print a list of all files in a directory and subdirectories

S

scotty

C:\>tree > mytree.doc
C:\>exit

will give me only a partial list. I need to go deeper into subtrees
 
T

Tim

try:

dir /s >somefile.txt

then print somefile.txt from notepad.

Try dir /? to get a list of all the options you might want to use to tweak
your file listing (for example, the format, type of listing, sort order, etc.)

HTH
 
Top