I'm trying to hand over one file at a time to File2BMP, move the output, delete the source and move on to the next file.
I've tried FORFILES but it seems to process all files at once, that's what I want to avoid due to space limitations.
This is what I'm looking at right now:
MKDIR temp
:CONVERT
IF EXIST *7z* (
FORFILES /M *7z* /c "cmd /c File2BMP.exe @file" | "cmd /c move *.bmp /temp/" | "cmd /c del @file"
)
ELSE (
EXIT
)
GOTO CONVERT
Any help would be greatly appreciated!