| 1. |
Solve : Resolved: Moving all .mp3? |
|
Answer» There we go, that did it! This will surely come in handy. Thanks! But what I'm wondering is...when using Sidewinder's code, how can I prevent overwriting? I'm not too worried about it with xcopy, but it's a problem with his code. Try experimenting with the -y switch. Check out: http://www.vfrazee.com/ms-dos/6.22/help/xcopy.htm and http://www.vfrazee.com/ms-dos/6.22/help/copy.htm Note the EXPLANATION: " (Previous versions of MS-DOS would simply replace the existing file.) If the COPY command is part of a batch file, COPY will behave as in previous versions. " Bear in mind that this info was written about MS-DOS. Quote from: CBMatt on May 26, 2007, 01:16:55 PM Better yet, how could it be set up to automatically rename like-named files (California(1).mp3, California(2).mp3, etc.)?How about this: Code: [Select]@echo off setlocal set Source=C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test set Dest=C:\Documents and Settings\Owner.Murgatroyd7\Desktop\curious for /f "delims=" %%a in ('dir "%Source%\*.mp3" /b /s') do ( if exist "%Dest%\%%~na%%~xa" ( call :IncrementFile "%%a" ) else copy "%%a" "%Dest%" ) goto :EOF :IncrementFile for /l %%b in (1,1,99) do ( if not exist "%Dest%\%~n1(%%b)%~x1" ( copy %1 "%Dest%\%~n1(%%b)%~x1" exit /b ) )That should rename up to 99 copies of the same file. It takes all the .MP3 files from SOURCE and all of it's subdirectories and puts them all in a flat directory of DEST. Is that what you are looking for?That's perfect, Gary. Thanks a lot for that! And thanks for the links, Willy. I'm going to read up on those when I have some free time tonight. Dark Blade...I believe I'm done with rudely hijacking your thread. I hope my questions here benefit you as much as they benefit myself.Well, at least you waited unitl my question was answered before hijacking, so I guess it was alright. This thread (and your hijacking of it) has actually helped me learn a few things about the for command. It's not as hard as I thought! Code: [Select]if not exist "%Dest%\%~n1(%%b)%~x1" ( copy %1 "%Dest%\%~n1(%%b)%~x1" But not smart enough to have ANY idea what that means. Anyway, I'll rename this POST Resolved, to get into the spirit of things.Quote from: CBMatt on May 26, 2007, 10:12:28 PM
You're welcome. Quote I'm going to read up on those when I have some free time tonight. Instead, you might want to bookmark this: http://www.vfrazee.com/ms-dos/6.22/help/ That's pretty much what we used to get when we typed help at the command line, back when Billy was only worth a few hundred million bucks. Everything on that page that is ENCLOSED in the green < > symbols is a link. |
|