Win 32,脚本,处理目录中的所有文件

发布于 2024-11-27 23:44:30 字数 181 浏览 1 评论 0原文

我需要使用控制台应用程序处理某个文件夹中的所有 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 技术交流群。

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

发布评论

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

评论(1

〆一缕阳光ご 2024-12-04 23:44:30

使用 for

for %f in (*.txt) do @convert "%f" -par1 -par2 -par3

请注意,我使用 @ 来抑制 for 循环每次迭代时命令行的回显。这是可选的。

上述语法适合在交互式控制台上使用。在批处理文件中执行时,%f 必须替换为 %%f

Use for

for %f in (*.txt) do @convert "%f" -par1 -par2 -par3

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.

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