printing file folders

  • Thread starter Thread starter edward ferrer
  • Start date Start date
I assume you mean create a list of all the sub folders and files in a
folder.

To do this, open a command prompt window and use the tree command

e.g.

tree /? <-- will give you all of the available options for the tree
command

tree c:\temp /f > lpt1: <-- will send the list of sub-folders and to a
printer (the info at http://members.shaw.ca/bsanders/printfromdos.htm might
help here)
 
you should also look at MS knowledge base 321379, the technique is for XP
(should work with w2k) and involves messing with the registry so if you've
not comfy with that stick with the advice you already have
 
Back
Top