Looking for a program...

I’m looking for a program that I can input a directory to and it outputs a list off all files in the folder and its subfolders. Basically to use for stuff like a list of all MP3s or pictures.
Anyone know of an app to do this?

I’ve actually heard this asked several times

you could do this pretty easily with batch commands and/or python

or netscape [or mozilla] or opera even, sorta [you may not get really spiffy trees]

so, could you give us some sample output?

[in linux or cygwin you ought to be able to just do something slightly more complex than “ls -Ra | grep .mp3”]

For sample output, all I need is just:
a.mp3
b.mp3
c.mp3

That’s all.
I could program this with batch commands or python, but that would be just another thing to do and I was wondering if there was anything out there that already did it.

If you are on a windows machine then look here and take your pick:
http://ftp.sunet.se/nonags/diskcat.html

Thanks

Windows:
http://www.spadixbd.com/freetools/JDirPrint.htm
http://pfolders.stratopoint.com/

Linux:
http://mama.indstate.edu/users/ice/tree/

MS-DOS:
dir [directory path] /s/b > outputfile.txt

Samir

find . -name “*.mp3”

linux or cygwin

if you’re on Windows you can use (cmd.exe):
tree c:\path\ /f > c:\file.txt
and it has a nice formated tree view of all the files.