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 操作系统。我试图找出目录中是否存在特定文件。目前我正在使用以下命令。
d:\> c:\Desktop\some.exe
但问题是上述命令无法在 d 驱动器的子文件夹中验证。我如何编写命令以查看子文件夹?
谢谢!
您可以使用此命令获取子目录中所有文件的列表
dir "yourfilename.ext" /s /b
如果你想知道你的文件“yourfilename.ext”出现了多少次,那么你可以扩展前面的命令
dir "yourfilename.ext" /s /b | find /C "yourfilename.ext"