MSDOS command question

swatcatpettus

Limp Gawd
Joined
Feb 18, 2005
Messages
133
I remember a long time ago I came across a DOS command that would let me take for example 30 different files and compose all the names into a text document, I have a bunch of band folders in my music folder that i would like list in a text doc. anyone know how?
 
Excute this from the command prompt after you changed to the directory you want to list

Without the ""

Code:
"dir /A:D /B >blahblah.txt"
 
or if you have nested folders:

dir /ad /b /s > bands.txt
 
Back
Top