Directory content listing

FOBSIDE

Platinum Member
Mar 16, 2000
2,178
0
0
is there a way in NT that i can output the contents of a directory in a list?
 

JayBone

Member
Aug 10, 2001
126
0
0
Start
Run - type in "cmd" (without quotes)
at the prompt, change to the directory you want to list.
type "dir > yourFileName.txt" (without quotes)

yourFileName.txt now contains that directory listing.
If you want to send it to your local printer, replace "yourFileName.txt" with "prn"
If you want to append it to the end of another file, use ">>" (two angle brackets) instead of just one.