• Hey, guest user. Hope you're enjoying NeoGAF! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Is there a way to extract all file names from a given directory tree?

Status
Not open for further replies.
A friend of mine is asking me for a list of all MP3 songs I have, and it would be really tedious if I had to go through all the folders one by one and right them down... Sure there is an easier way?
 
Ferrio's mostly correct, but I assume you'll want subdirectories as well.

Windows:
dir /b /s *.mp3 > mp3.txt

Linux:
ls -R -1 "*.mp3" > mp3.txt
 

Stuggernaut

Grandma's Chippy
Or you could just load all the files into a winamp playlist and generate an HTML page (it's an option) that shows them all.

Then print it ;)
 
Status
Not open for further replies.
Top Bottom