cmd.exe查找具有完整路径的文件和目录?

时间:2016-05-24 16:25:41

标签: windows cmd

我刚注意到,在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中执行相同操作?

1 个答案:

答案 0 :(得分:2)

使用dir

打印完整路径使用/b
dir /S /b "test.exe"