7 ms·
$file = Get-ChildItem "C:\some path\having spaces.txt" Write-Output $file.DirectoryName Write-Output $file.Name Write-Output $file.BaseName Or if that's
by dahauns 6mo ago
$file = Get-ChildItem "C:\some path\having spaces.txt"
Write-Output $file.DirectoryName
Write-Output $file.Name
Write-Output $file.BaseName
Or if that's still to verbose:
$file = gci "C:\some path\having spaces.txt"
echo $file.DirectoryName
echo $file.Name
echo $file.BaseName
People should really get over their aversion against powershell.
- m4ck_ 6mo agoYou could just one line it too: Get-Item "C:\some path\having spaces.txt" | select DirectoryName, Name, Basename