I'm looking for a simple batch routine which goes over all folders. Something like this:
CODE
@ECHO OFF
FOR %%I IN (*.ape) DO mac.exe "%%~NI.ape" "%%~NI.wav" -d
FOR %%I IN (*.flac) DO flac.exe -d "%%~NI.flac" "%%~NI.wav"
DEL *.ape
DEL *.flac
(... -> i still have to think about the new format, but that doesn't matter for now)
PAUSE > NUL
FOR %%I IN (*.ape) DO mac.exe "%%~NI.ape" "%%~NI.wav" -d
FOR %%I IN (*.flac) DO flac.exe -d "%%~NI.flac" "%%~NI.wav"
DEL *.ape
DEL *.flac
(... -> i still have to think about the new format, but that doesn't matter for now)
PAUSE > NUL
Yes, I know the search function, but didn't find any suitable batch.