这是这个问题的直接延伸:
How to do something to each file in a directory with a batch script
如何为每个文件执行MULTIPLE命令?我想首先使用lame来压缩文件,然后将原始文件移动到另一个目录
这是我到目前为止:
FOR /r cutAndPendingCompression %%f IN (*.*) DO lame %%f compressed\%%~nf -m m -b 16 --vbr-new -V 9 --scale 2.5
这样做了
原文链接:https://www.f2er.com/windows/372056.htmlFOR /r cutAndPendingCompression %%f IN (*.*) DO ( lame %%f compressed\%%~nf -m m -b 16 --vbr-new -V 9 --scale 2.5 move %%f cut\%%~nf )