Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Resolved: Moving all .mp3  (Read 6170 times)

0 Members and 1 Guest are viewing this topic.

CBMatt

  • Mod & Malware Specialist


  • Prodigy

  • Sad and lonely...and loving every minute of it.
  • Thanked: 167
    • Yes
  • Experience: Experienced
  • OS: Windows 7
Re: Moving all .mp3
« Reply #15 on: May 26, 2007, 10:20:31 AM »
There we go, that did it!  This will surely come in handy.  Thanks!

One little thing, however...In the test folder, I have two subdirectories: happy and new year.  Each of those contains a text file try.txt (same filename, but different content).  When I use this batch for .txt files, it only copies the new year file and not the happy one.  So, that must mean that one is overwriting the other.  What can be done about this?



(I've completely hijacked your thread, Dark Blade, and I'm sorry, but I think the information here will benefit you.)
Quote
An undefined problem has an infinite number of solutions.
—Robert A. Humphrey

GuruGary



    Adviser
    Re: Moving all .mp3
    « Reply #16 on: May 26, 2007, 11:54:16 AM »
    For XCOPY, you can user the /D switch to tell it to only overwrite an existing file if the file to be copied is newer.  XCOPY will also keep the directory tree like it is in the source.  If you want to merge all files into a single directory, then use code like Sidewinders.

    CBMatt

    • Mod & Malware Specialist


    • Prodigy

    • Sad and lonely...and loving every minute of it.
    • Thanked: 167
      • Yes
    • Experience: Experienced
    • OS: Windows 7
    Re: Moving all .mp3
    « Reply #17 on: May 26, 2007, 01:16:55 PM »
    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.

    If I wanted to copy my entire music collection into one directory, I'd lose hundreds of songs.  I've got at least fifteen California.mp3 files, and they're all different songs.  How would I set up the batch file to prompt me to overwrite or not?

    Better yet, how could it be set up to automatically rename like-named files (California(1).mp3, California(2).mp3, etc.)?
    Quote
    An undefined problem has an infinite number of solutions.
    —Robert A. Humphrey

    WillyW



      Specialist
    • Thanked: 29
    • Experience: Experienced
    • OS: Windows XP
    Re: Moving all .mp3
    « Reply #18 on: May 26, 2007, 02:10:44 PM »
    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.   

    .



    GuruGary



      Adviser
      Re: Moving all .mp3
      « Reply #19 on: May 26, 2007, 05:01:05 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?

      CBMatt

      • Mod & Malware Specialist


      • Prodigy

      • Sad and lonely...and loving every minute of it.
      • Thanked: 167
        • Yes
      • Experience: Experienced
      • OS: Windows 7
      Re: Moving all .mp3
      « Reply #20 on: May 26, 2007, 10:12:28 PM »
      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.
      Quote
      An undefined problem has an infinite number of solutions.
      —Robert A. Humphrey

      Dark Blade

        Topic Starter
      • Forum Gaming Master


      • Adviser

        Thanked: 24
        • Yes
      • Experience: Experienced
      • OS: Windows XP
      Re: Moving all .mp3
      « Reply #21 on: May 26, 2007, 10:15:19 PM »
      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.
      « Last Edit: May 27, 2007, 01:37:30 AM by Dark Blade »

      WillyW



        Specialist
      • Thanked: 29
      • Experience: Experienced
      • OS: Windows XP
      Re: Moving all .mp3
      « Reply #22 on: May 27, 2007, 11:17:20 AM »


      And thanks for the links, Willy.

      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. 


      .