Jump to content

I need a solution


G+_Tony Dunn
 Share

Recommended Posts

I did this a couple weeks ago with a batch script, but I don't remember exactly what I typed...

You should also be able to do it in Windows Explorer using the search in the top right. Type (with the quotes) "*.mp3" and that should find all MP3s in all the sub folders. You can then select all and copy to your desired destination.

Link to comment
Share on other sites

I'll try some commands when I get to wrong, but I did this very same thing with CSV files a couple weeks ago. Or Yeah... And because "raw mp3" is a subfolder of "music", it will be scanned too.

 

A few other options.... Surely xcopy and robocopy both have this ability. Robocopy also has a gui with checkboxes available.

Link to comment
Share on other sites

Yeah, this worked for me:

For /r z:\music %i in (*.mp3) do copy "%~fi" "z:\raw mp3\~nxi"

 

Well, kinda... I started my command prompt in the folder I wanted to work in and I was using .data files, but it should essentially be exactly like this solution.

 

What are you getting in the command prompt window? On mine, you can see it scroll through all the files as it builds a copy command for each one. If it's doing nothing, make sure you're dealing with MP3s and not WMAs or some other format.

Link to comment
Share on other sites

 Share

×
×
  • Create New...