通过批处理文件打印目录中的所有文件

发布于 2024-10-20 22:25:33 字数 61 浏览 5 评论 0原文

我想在 DOS 中编写一个批处理文件,它从输入目录中读取所有文件,并使用 FOR 循环在屏幕上显示文件列表。

I want to write a batch file in DOS which reads all the files from the input directory and display the list of files on the screen using FOR loop.

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

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

发布评论

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

评论(1

揪着可爱 2024-10-27 22:25:33

dir 用于目录 dir /s 中的文件(

如果要包含子目录中的文件)。

Microsoft 命令行参考

编辑:

FOR %%i IN (*.*) DO echo %%i

这将打印出运行批处理文件的目录中的所有文件的名称。

dir for the files in the directory

dir /s if you want to include the files in the sub-directories.

microsoft command line reference

edit:

FOR %%i IN (*.*) DO echo %%i

This will print out the names of all the files in the directory you run the batch file in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文