Quantcast
Channel: Active questions tagged windows - Super User
Viewing all articles
Browse latest Browse all 9281

Batch Script or CMD Only Able to Process 70 Files at Once?

$
0
0

I made a script for vgmstream that decodes audio streams with some custom options like the output path and logging. I have noticed that the script terminates in the terminal if I exceed using more than 70 files with it, worth noting: I have many similar projects and they suffer from the same issue. Is there an issue in my code or is this an intrinsic limitation of the Windows command processor?

title vgmstream Decodermd "%~dp1vgmstream" & clsfor %%f in (%*) do ((echo [%date:~-10,2%/%date:~-7,2%/%date:~-4,4% @ %time:~0,2%:%time:~3,2%]echo Infile: %%~nxfecho Size: %%~zf bytesecho Codec: WAVecho Outfile: %%~nf.wavecho.)>>"%~dp1vgmstream\vgmstream.log""%~dp0vgmstream-cli.exe" %%f -o "%~dp1vgmstream\%%~nf.wav")start "" notepad "%~dp1vgmstream\vgmstream.log"

Viewing all articles
Browse latest Browse all 9281

Trending Articles