- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ファイル操作/ファイル検索 ファイル名を文字列で取得 へ行く。
- 1 (2018-07-28 (土) 21:26:15)
ファイル名を文字列で取得
-Nameを指定
PS> dir -Name *.txt A.txt B.txt
selectを使用
PS> dir *.txt | select -ExpandProperty FullName C:\temp\A.txt C:\temp\B.txt