I am putting a batch together to run a propitiatory audio converter. The batch works, you put it into a folder and dump each file you need to convert into the same folder, it loops through each one and outputs the converted file into a folder names converted. When you run it, it sits there until completed. What I am trying to do is at the beginning of each loop say something like "converting file 1" "converting file 2" and so on so the user can see some progress. I just have no clue how to add that in. Here is what I have so far.
@echo off
color Fc
echo Remember to put this program and the audio files to convert into the same folder!!!!!
pause
if not exist converted MD converted
for /r . %%f in (*.wav) do "C:\Program Files\Verint\Playback\CommandLineConvertor.exe" "%CD%\%%~nxf" "%CD%\converted\%%~nxf"
echo All files have been converted
pause
end
Thanks!