02-07-2016, 06:22 PM
(This post was last modified: 02-07-2016, 06:49 PM by Skyla Doragono.)
So, I have 22,000 files to convert (just for one thing I unpacked!), but the program I have to convert them does not handle * wildcard, meaning I need to convert files one at a time.
Needless to say, this isn't going to really work.
I've used the following .bat script, but it's not working:
If someone can help me out, I'd appreciate it. Thanks in advance.
EDIT: IIIIIII'm an idiot. Figured it out; just needed to change %%~nf.wav to %%~nf_convert.wav so it didn't overwrite itself.
Needless to say, this isn't going to really work.
I've used the following .bat script, but it's not working:
Code:
for %%f in (*.wav) do at9tool -d %%f %%~nf.wav
If someone can help me out, I'd appreciate it. Thanks in advance.
EDIT: IIIIIII'm an idiot. Figured it out; just needed to change %%~nf.wav to %%~nf_convert.wav so it didn't overwrite itself.