I'm trying to make a TXT file list of all my MP3's. They're all contained on the E: partition. I know in the DOS command line you can do a command and then use > C:\tex.txt to make the output into a text file. So here's what I type:
E:\>DIR /b /o:N /s > C:\mp3list.txt
Those operators are:
/b:bare format (no filesize, etc)
/o:N:sorts alphabetically
/s:includes files in subdirectories
But here's the problem. It outputs all the files in the root E: directory first, and then all the files within the subdiriectories. But I want it to do it like Napster does, where it alphabetizes the ENTIRE list. Does that make any sense at all? It's hard to explain...anyone know how to do this?
E:\>DIR /b /o:N /s > C:\mp3list.txt
Those operators are:
/b:bare format (no filesize, etc)
/o:N:sorts alphabetically
/s:includes files in subdirectories
But here's the problem. It outputs all the files in the root E: directory first, and then all the files within the subdiriectories. But I want it to do it like Napster does, where it alphabetizes the ENTIRE list. Does that make any sense at all? It's hard to explain...anyone know how to do this?