1

我有一个 .exe 文件,它以两个 jpg 图像作为参数并对它们进行一些处理。所以,cmd中的命令是:

myfile.exe base_image.jpg image1.jpg

第一个图像是标准的,而第二个图像发生了变化,我需要重复执行超过 50000 个图像。所以在每次迭代中,命令被修改为

myfile.exe base_image.jpg image2.jpg

myfile.exe base_image.jpg image3.jpg

...

myfile.exe base_image.jpg image50000.jpg

改写它我需要执行这个:myfile.exe base_image.jpg image%d.jpgfor d [1,50000]

所有必要的文件都放在同一个文件夹中。是否可以为此作业编写批处理文件?

4

1 回答 1

2

那是一个命令,所以你真的不需要批处理文件

for /l %%a in (1,1,50000) do myfile.exe base_image.jpg image%%a.jpg
于 2012-05-24T15:48:57.727 回答