Freeware To Extract Mp3s From Folders

  • Thread starter Thread starter Chima Nwosu
  • Start date Start date
C

Chima Nwosu

Hello everyone.

Windows Media Player has reorganized my music folder so that each of my over
3000 mp3s is now in at least one folder ( some are buried three folders
deep). I didn't want this to happen and have now turned off the option
allowing the player to do this, but I still have the problem of how to get
back to how my music folder was organized before the intervention of WMP.
Does anyone know of a freeware program that will allow me to simultaneously
extract the contents of over 3000 folders so that they can be saved in just
one folder, with no subfolders.

Many thanks.
 
Il Wed, 22 Mar 2006 20:01:13 -0000, Chima Nwosu ha scritto:
Does anyone know of a freeware program that will allow me to simultaneously
extract the contents of over 3000 folders so that they can be saved in just
one folder, with no subfolders.


You could search for all *.mp3 files, move all of them to a temporary
directory then usa a software like mp3tag to rename them in the format you
prefer (that is including directory if you want).
Bye
Francesco
 
Open windows explorer and search for *.mp3. When the search is finished, hit
CTRL-A to select all of them and drag them to the folder of your choice.
Louis
 
Thanks. That's a very good idea.
Francesco Ghirlanda said:
Il Wed, 22 Mar 2006 20:01:13 -0000, Chima Nwosu ha scritto:



You could search for all *.mp3 files, move all of them to a temporary
directory then usa a software like mp3tag to rename them in the format you
prefer (that is including directory if you want).
Bye
Francesco
 
Chima Nwosu said:
Hello everyone.

Windows Media Player has reorganized my music folder so that each of my
over 3000 mp3s is now in at least one folder ( some are buried three
folders deep). I didn't want this to happen and have now turned off the
option allowing the player to do this, but I still have the problem of how
to get back to how my music folder was organized before the intervention
of WMP. Does anyone know of a freeware program that will allow me to
simultaneously extract the contents of over 3000 folders so that they can
be saved in just one folder, with no subfolders.
Hi Chima.
It`s been suggested that you search for *.mp3, select them all and
move them to a new folder.
If I were you, I`d rt\click on the topmost (master folder).
And do a Properties on it. This will give you an idea of the total
size you`re going to copy.
And don`t forget, you`ll have 3000 mp3s in one folder.
 
hi,
Hello everyone.

Windows Media Player has reorganized my music folder so that each of my
over 3000 mp3s is now in at least one folder ( some are buried three
folders deep). I didn't want this to happen and have now turned off the
option allowing the player to do this, but I still have the problem of
how to get back to how my music folder was organized before the
intervention of WMP. Does anyone know of a freeware program that will
allow me to simultaneously extract the contents of over 3000 folders so
that they can be saved in just one folder, with no subfolders.

Many thanks.
check out this program: bulk rename
http://www.bulkrenameutility.co.uk/Main_Intro.php
it lets you view subfolders, rename,move into folders, all kinds of
good stuff.
s...
 
Hi Chima.
It`s been suggested that you search for *.mp3, select them all and
move them to a new folder.
If I were you, I`d rt\click on the topmost (master folder).
And do a Properties on it. This will give you an idea of the total
size you`re going to copy.
And don`t forget, you`ll have 3000 mp3s in one folder.

Yeah, and there is a verry good chanche that everything will crash... I've
tryed that a couple of time with just a few hundred files and what happens ?
(Search) Exlorer crashes :(
If I were u, i'd forget about that windows searh method...

Hope I helped :)
 
Chima Nwosu said:
Windows Media Player has reorganized my music folder so that each of my over
3000 mp3s is now in at least one folder ( some are buried three folders
deep). I didn't want this to happen and have now turned off the option
allowing the player to do this, but I still have the problem of how to get
back to how my music folder was organized before the intervention of WMP.
Does anyone know of a freeware program that will allow me to simultaneously
extract the contents of over 3000 folders so that they can be saved in just
one folder, with no subfolders.

I'd use XXCopy, with a switch from the /SG family. Not only will XXCopy
be much cleaner and stronger to do the job over GUI drag actions, but
it also has some useful options. Particularly: the automatic rename in
case of filename collision. (And misc other options available, such as
logging the process, faithful to the SFNs, deleting from source after
successful move, exclusions if wanted, etc.)

http://www.xxcopy.com/xxcopy16.htm
"Gathering files into one directory using XXCOPY"


..............................................................................
[BATCH SAMPLES]

The file below is sample only. Might help as a starter point.

-----------Sample1.bat---------------------
@echo off

set src="C:\Example\Windows Media Player\*.mp3"
set dst="D:\Example\Data\My MP3s\"

:: Don't use a destination directory within the path of the source directory.
:: XXCopy has the ability, via custom command, to avoid an infinite recursion
:: loop, but it'd be simpler to just use an independent destination directory.

xxcopy %src% %dst% /SG /h/r/ks

:: /SG gathers the files into a single directory
:: /h/r/ks include hidden & read-only files, keep attribs
-----------/Sample1.bat---------------------


The following is a variation of the above, but containg data-destructive
commands. And my sample, I might be blind, for all I know, to some bad error.
So proceed thoughtfully. But the reason I went to the second one
here is that your operation could benefit from some cleanup of the source
directory during that copy process.

-----------Sample2.bat---------------------
@echo off
echo *data destructive* !!

set src="C:\Example\Windows Media Player\*.mp3"
set dst="D:\Example\Data\My MP3s\"

:: Don't use a destination directory within the path of the source directory.
:: XXCopy has the ability, via custom command, to avoid an ini finite
recursion
:: loop, but it'd be simpler to just use an independent destination directory.

xxcopy %src% %dst% /SG /RCY /PD0 /h/r/ks/i0

:: /SG gathers the files into a single directory
:: /RCY will delete those files from the source after copy
:: /PD0 will suppress the prompt that has you confirm permission to delete
:: /h/r/ks include hidden & read-only files, keep attribs

pause
:: Now kill leftover empty directories.
:: REM xxcopy %dst% /RSY /H /R /S /X*

:: Or, use RMempty to kill the empty directories.
RMempty.exe %dst%

GOTO :EOF
:EOF
-----------/Sample2.bat---------------------


..............................................................................
[URLs]

RMempty
http://www.jsiinc.com/SUBL/tip5500/rh5538.htm
http://www.otbsw.com/Files/rmemp12.zip

XXCopy
http://www.xxcopy.com/index.htm
http://www.xxcopy.com/xxcopy16.htm
http://www.xxcopy.com/download/xxcopy.zip
http://www.xxcopy.com/download/xxcopy.chm


..............................................................................
[MORE HELP]

The author of the program, Kan Yamamoto, has written some very helpful
messages to users, over time, including illustrative explanations on
using the directory flattening/gathering feature of XXCopy.

I'd thought of trying to include some references links to pertinent
messages, or even pasting some excerpts from my archives, but in the
end I decided not worth the hassle. If you want to do the lookup yourself,
though, keywords might be something like: xxcopy Kan gather OR flatten.

Kan used to post fairly regularly on netnews. More recent few years I
suppose that most of the gold over at the Yahoo Groups site. Fortunately
he mirrors a copy of the archives on his own site, so one can avoid Yahoo
if only seeking to read.

..............................................................................
[EN BREF?]

Of course you might not be inclined into delving into a lot of XXCopy
learning at the moment. I believe that you'll be fine if not, and
assuming you've used the command prompt before. Basically all you
have to do is run XXCopy with the /SG switch to accomplish your task.

Only item is be attentive about specifying your source and destination
directories. For this project, don't use one that is within the other.
And follow syntax rules: surround directory names in quotes, and end
them with a trailing backslash.
 
[rev.]
xxcopy %src% %dst% /SG /RCY /PD0 /h/r/ks

:: /SG gathers the files into a single directory
:: /RCY will delete those files from the source after copy
:: /PD0 will suppress the prompt that has you confirm permission to delete
:: /h/r/ks include hidden & read-only files, keep attribs

:: Now kill leftover empty directories.

Just noticed that it was redundant to add on the action for killing the
leftover empty dirs. XXCopy does that part automatically when the /RCY
switched is used as above.
 
Hello everyone.

Windows Media Player has reorganized my music folder so that each of my over
3000 mp3s is now in at least one folder ( some are buried three folders
deep). I didn't want this to happen and have now turned off the option
allowing the player to do this, but I still have the problem of how to get
back to how my music folder was organized before the intervention of WMP.
Does anyone know of a freeware program that will allow me to simultaneously
extract the contents of over 3000 folders so that they can be saved in just
one folder, with no subfolders.

Many thanks.
How did you turn off this option? I stopped using WMP because I have my own
directory structure and WMP blasted my files into a structure of its own
devising. This caused me hours of work to undo.

Max
 
Just use windows Search option to search your harddisk for *.mp3. Then
select them all and copy them to a new folder.
Find yourself a free mp3 player there's plenty around. Media player takes
far to long to open for my liking
 
Back
Top