如何使用 .bat 脚本列出文件
我有目录结构:
pakages
|-files.bat
|-component
|-source
|-lib
我需要使用 files.bat 脚本制作文本文件,文件列表如下:
File0001=source\WindowT.pas
File0002=source\AWindowT.pas
File0003=source\AWindowSplash.pas
File0004=source\InternalT.pas
File0005=source\ImageLister.pas
File0006=lib\LIcons.res
File0007=lib\TstandartBtn_16.RES
File0008=lib\TstandartBtn_24.RES
......etc
如何制作这样的文件列表?
先感谢您
I have directory structure:
pakages
|-files.bat
|-component
|-source
|-lib
I need to make text file using the files.bat script with file listing like this:
File0001=source\WindowT.pas
File0002=source\AWindowT.pas
File0003=source\AWindowSplash.pas
File0004=source\InternalT.pas
File0005=source\ImageLister.pas
File0006=lib\LIcons.res
File0007=lib\TstandartBtn_16.RES
File0008=lib\TstandartBtn_24.RES
......etc
How to make such file listing?
Thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我拼凑了以下脚本:
它可能不完全是您所需要的,但应该提供一个起点。 然而,输出是相同的。 对于以下文件/目录树:
运行批处理将产生以下输出:
I have cobbled together the following script:
It may be not exactly what you need, but should provide a starting point. The output, however, is identical. For the following file/directory tree:
running the batch will produce the following output:
这就是你最想要的。
That get's you most of what you want.
从以下内容开始:
Start with something along the lines of: