The command rmdir fails if the folder isn't empty, so if only a sample were moved, then the Subs, CD1, CD2 and CD3 folders are empty and will then be deleted.
Whatever I download is downloaded to my hard drive D:. For some reason I had to add "D:" on the line above "cd %1", as "cd %1" somehow didn't work wherever the command line is started from (probably somewhere on C:). If you're going to use this you may have to replace D: with the drive letter for the disk your downloads are placed on.
Last edited by GAMBRiNUS on May 15th, 2010, 9:38 am, edited 1 time in total.
GAMBRiNUS wrote:
Whatever I download is downloaded to my hard drive D:. For some reason I had to add "D:" on the line above "cd %1", as "cd %1" somehow didn't work wherever the command line is started from (probably somewhere on C:).
Try "cd /d %1". The /d switch changes current drive in addition to changing current directory for a drive.