通过命令提示符查找

发布于 2024-08-29 19:23:13 字数 45 浏览 4 评论 0原文

如何通过命令提示符查找任何目录(即c:\,d:\等)中的所有*.txt文件?

How to find all the *.txt files in any directory(i.e. c:\,d:\ etc.) through command prompt?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

世态炎凉 2024-09-05 19:23:13
c:
cd \
dir /s *.txt
d:
cd \
dir /s *.txt
c:
cd \
dir /s *.txt
d:
cd \
dir /s *.txt
孤独陪着我 2024-09-05 19:23:13

以下将从根目录及其所有可访问的子文件夹中进行搜索,无论您当前所在的文件夹如何。

dir \*.txt /s

dir c:\*.txt /s
dir d:\*.txt /s

Following will search from root directory and its all accessible sub folders regardless of the folder you currently in.

dir \*.txt /s

or

dir c:\*.txt /s
dir d:\*.txt /s

etc

So要识趣 2024-09-05 19:23:13

尝试使用dir *.txt

Try using dir *.txt

第几種人 2024-09-05 19:23:13
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
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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文