如何通过命令提示符找到任何目录中的所有* .txt文件(即c:\,d:\ etc.)?
答案 0 :(得分:2)
c:
cd \
dir /s *.txt
d:
cd \
dir /s *.txt
答案 1 :(得分:1)
以下内容将从根目录及其所有可访问的子文件夹中搜索,无论您当前所在的文件夹是什么。
dir \*.txt /s
或
dir c:\*.txt /s
dir d:\*.txt /s
等
答案 2 :(得分:0)
尝试使用dir *.txt
答案 3 :(得分:0)
setlocal ENABLEEXTENSIONS
FOR %%A IN (a b c d e f g h i j k l m n o p q r s t u v w x y z) DO @call :dumpdrive %%A
echo Done...
goto :EOF
:dumpdrive
FOR /R "%1:\" %%B IN (*.txt) DO @echo.%%~fB
goto :EOF