Win 32,脚本,处理目录中的所有文件
我需要使用控制台应用程序处理某个文件夹中的所有 txt 文件。该命令看起来类似于:
convert input_file.txt -par1 -par2 -par3
如何编写批处理文件夹中的所有文件,将文件名作为参数传递给控制台应用程序?另一个想法,Python 解决方案怎么样?
I need to process all txt file in some folder using a console application. The command looks similar to this:
convert input_file.txt -par1 -par2 -par3
How to write a batch processing all files in the folder, passing file name as parameter to console apllication? Another idea, what about a Python solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
for
请注意,我使用
@
来抑制 for 循环每次迭代时命令行的回显。这是可选的。上述语法适合在交互式控制台上使用。在批处理文件中执行时,
%f
必须替换为%%f
。Use
for
Note that I use
@
to suppress echoing of the command line at each iteration of the for loop. This is optional.The above syntax is appropriate for use at the interactive console. When executing in a batch file, the
%f
must be replaced with%%f
.