转换为另一个文件夹

时间:2017-12-22 11:59:54

标签: batch-file cmd imagemagick image-manipulation imagemagick-convert

这个命令对我有用:

To run from cmd.exe:
convert *.jpg -set filename:f "%t.%e" "%[filename:f].png"

The same, to run from bat-file (double % instead of single):
convert *.jpg -set filename:f "%%t.%%e" "%%[filename:f].png"

现在,让我们假设我有这个文件层次结构:

test\
 |-- small\               <-- this is an empty folder
 |-- image1.jpg
 |-- image2.jpg

如何修改现有脚本以输出小文件夹中的文件,如下所示?

Current behaviour:
test\
 |-- small\
 |-- image1.jpg
 |-- image2.jpg
 |-- image1.jpg.png
 |-- image2.jpg.png

Desired behaviour:
test\
 |-- small\
      |-- image1.jpg.png
      |-- image2.jpg.png
 |-- image1.jpg
 |-- image2.jpg

我尝试使用%~dp0,但目前没有运气。

1 个答案:

答案 0 :(得分:1)

我想我明白了,但在尝试之前做了备份:

mogrify -path small -format png *.jpg

我没有Windows随时可以测试,但根据您的评论尝试:

convert *.jpg -set filename:f "%%t.%%e" "small/%%[filename:f].png"