|
Answer» i need help to make a list of all my mp3 i have on my E: what command i have to use with dosCan you not just run a dir e:\path\*.mp3 command at the shell prompt?
Note: fill in path with the path to your music.
i used this little SCRIPT for my game SERVER to make a maplist file:
Code: [Select]@echo off dir *.mp3 /-b > mp3list.txt
of course this is assuming all the FILES are in the same directory, if not a little code tweaking could fix itIf you WANT them in a file C:\MP3List.txt with the entire path, then use the command: Code: [Select]dir e:\*.mp3 /s /a /b >C:\MP3List.txt
|