Answers for "show current folder path powershell"

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

Code answers related to "show current folder path powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language