我正在将一批放在一起运行一个支持音频转换器。批处理工作,您将它放入一个文件夹并将您需要转换的每个文件转储到同一个文件夹中,它循环遍历每个文件并将转换后的文件输出到转换后的文件夹名称中。当你运行它时,它会一直待在那里直到完成。我要做的是在每个循环的开头说“正在转换文件 1”“正在转换文件 2”等等,这样用户就可以看到一些进展。我只是不知道如何添加它。这是我到目前为止所拥有的。
@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
谢谢!