ファイルを探す

Cドライブでファイルを検索するコマンドです。再帰的にサブフォルダを検索します。

バッチ

サンプル:


dir c:\test.txt /S



Powershell

サンプル:


Get-ChildItem -Path c:\ test.txt -Recurse



cygwin

cygwinとはWindows環境で Unix ライクなコマンドを使用するフリーソフトです。

cygwin をダウンロードする

サンプル:


c:\cygwin\bin\find / -name test.txt



コマンドサンプル一覧