Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows OSを使用しています。特定のファイルがディレクトリに存在するかどうかを調べようとしています。現在、以下のコマンドを使用しています。
d:\> c:\Desktop\some.exe
しかし、問題は上記のコマンドがdドライブのサブフォルダーで検証しないことです。サブフォルダーも検索するコマンドを作成するにはどうすればよいですか?
ありがとう!
このコマンドを使用して、サブディレクトリ内のすべてのファイルのリストを取得できます
dir "yourfilename.ext" /s /b
ファイル「yourfilename.ext」が何回存在するかを知りたい場合は、前のコマンドを次のように拡張できます
dir "yourfilename.ext" /s /b | find /C "yourfilename.ext"