ファイル名を文字列で取得

-Nameを指定

 PS> dir -Name *.txt
 
 A.txt
 B.txt

selectを使用

 PS> dir *.txt | select -ExpandProperty FullName
 
 C:\temp\A.txt
 C:\temp\B.txt

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS