I'm looking to make a batch script that will move all images in sub subfolders down to the layer above the batch script. For Example:
comics\move.bat
comics\series 000\series 000 blah\01.jpg,02.jpg, etc.
comics\series 001\series 001 blah\series blah\01.jpg,02.jpg, etc.
into
comics\series 000\01.jpg,02.jpg, etc.
comics\series 001\01.jpg,02.jpg, etc.
I've tried several variations of for /r %%i in (*.jpg) do move "%%~fi" "%%~pi*.jpg"
But it won't do anything. One way I had it would move all images into the same folder as I was running the script from but that's the closest I've gotten. A clean up of the now empty folders would be nice too!