Answers for "get current dir powershell"

C#
1

get current working directory powershell

$Get-Location
$pwd
Posted by: Guest on August-26-2021
0

powershell show only current directory

function prompt {
  $p = Split-Path -leaf -path (Get-Location)
  "$p> "
}
Posted by: Guest on March-30-2021
1

powershell open current directory

ii .
Posted by: Guest on October-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language