Powershellワンライナーでショートパス(フルパス)を取得する
ショートパス名を取りたいファイル・フォルダがあるところに移動して、以下のコマンドを実行。
・ファイル名
$fso=New-Object -ComObject Scripting.FileSystemObject; get-childitem | ? {!$_.psiscontainer} | %{$fso.getfile($_.fullname).shortpath}
・フォルダ名
$fso=New-Object -ComObject Scripting.FileSystemObject; get-childitem | ? {$_.psiscontainer} | %{$fso.getfolder($_.fullname).shortpath}
« Powershellワンライナーで連番のディレクトリを作る | トップページ | Powershellで日時を取得 »
« Powershellワンライナーで連番のディレクトリを作る | トップページ | Powershellで日時を取得 »
コメント