How to do multiple things to each file in a directory with a batch script

前端 未结 1 1616
失恋的感觉
失恋的感觉 2021-01-02 18:07

This is a direct extension of this question:

How to do something to each file in a directory with a batch script

From the above I leaned how to execute a com

1条回答
  •  隐瞒了意图╮
    2021-01-02 18:43

    This did it

    FOR /r cutAndPendingCompression %%f IN (*.*) DO (
    lame %%f compressed\%%~nf -m m -b 16 --vbr-new -V 9 --scale 2.5
    move %%f cut\%%~nf
    )
    

    0 讨论(0)
提交回复
热议问题