我刚注意到,在Windows cmd.exe
中查找这样的文件:
C:\test>dir . /s | findstr /E "test.exe"
24-05-2016 18:11 262.656 test.exe
24-05-2016 18:11 262.656 test.exe
...不提供文件的完整路径,因为它不在dir
的输出中。在Unix中,我可以这样做:
find /c/test -name "test.exe"
...我会得到绝对路径列表。如何在Windows命令提示符cmd.exe
中执行相同操作?
答案 0 :(得分:2)
使用dir
/b
dir /S /b "test.exe"