- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ファイル操作/ファイル検索 更新日時で検索 へ行く。
- 1 (2015-08-18 (火) 04:14:42)
ファイル検索
最終更新日時による検索
PS> dir .\tmp\ | ft -a Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 2015/08/17 19:08 5 1.txt -a--- 2015/08/17 18:09 0 2.txt PS> [datetime]$theday = "2015-08-17 18:50:00" PS> dir -R tmp | ? { $_.LastWriteTime -gt $theday } | ft -a Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 2015/08/17 19:08 5 1.txt