Please Scroll Down to See Forums Below
napsgear
genezapharmateuticals
domestic-supply
puritysourcelabs
UGL OZ
UGFREAK
napsgeargenezapharmateuticals domestic-supplypuritysourcelabsUGL OZUGFREAK

how to make list of MP3s from a directory?

HumanShell

New member
I remember a long time ago someone posted on here something to type into a cmd line that would make a txt file out of all the mp3s in a directory, so you could show what files you have. I can't find it with search since I'm not play, any help?
 
Well theres probably a dos command, but i am lazy so i just make a new playlist with winamp and add the directory in question, then save the playlist. Give the playlist to whoever.

edit: ok the DOS command would be to enter dos and change to the directory in question, then type 'dir > list.txt.' The text file will contain the list.
 
Last edited:
HumanShell said:
That makes a list of each folder, but not of the mp3's in those directories.

dir /S /B > list.txt

should do what ya want

if you need some help with command line switches, do

'help dir'
 
Great...now, is there a way to get the list to list the subdirectories in alphabetical order? This is what mine looks like now....using dir /s /b > mp3.txt


here ya go
 
HumanShell said:
Great...now, is there a way to get the list to list the subdirectories in alphabetical order? This is what mine looks like now....using dir /s /b > mp3.txt


here ya go

use /O for alphabetical order.....

while your are at it, use 'help dir' to figure out how to use it.
 
Top Bottom