通过批处理文件打印目录中的所有文件
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
dir
用于目录dir /s
中的文件(如果要包含子目录中的文件)。
Microsoft 命令行参考
编辑:
这将打印出运行批处理文件的目录中的所有文件的名称。
dir
for the files in the directorydir /s
if you want to include the files in the sub-directories.microsoft command line reference
edit:
This will print out the names of all the files in the directory you run the batch file in.