printing folders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone provide information on how to print the lists of folders and their
sub-folders?? thanks
 
Can anyone provide information on how to print the lists of folders and their
sub-folders?? thanks

How to add the Print Directory feature for folders in Windows XP
http://support.microsoft.com/?kbid=321379

Add a Print Directory Feature for Folders in Windows XP
http://www.mvps.org/sramesh2k/PrintDirectory.htm

A quick and dirty way without any new software is from a DOS shell:
Click Start, Programs, DOS Prompt or click Start, Run. In the Run
box, type "cmd" without the quotes and press enter.

Navigate your way to the directory where the files are located, and use the DIR command to list
the directory and use switches to control output.
/a shows ALL files (hidden, system, etc.) dir/a
/o (letter o, not a zero) sorts them alphabetically dir/o
/s shows subdirectories dir/s
/b bare format: Just the long filename, no size, etc. dir/b
Add the command ">list.txt" to send the output to a text file "List.txt".
(Double ">>"'s makes the DIR command append the output to an existing text file)

So if you want a list of EVERY file on the C:\Music folder sent to a text file that you can
edit, then use the following command:
dir c:\music /a/b/o/s>list.txt

By 3rd party Software:
Karen's Directory Printer
http://www.karenware.com/powertools/ptdirprn.asp

Print Folder Pro:
http://no-nonsense-software.com/download.html

Print It:
http://www.skylarkutilities.com/print-it/home.html

DirPrint by Wim Heirman:
http://studwww.rug.ac.be/~wheirman/
http://studwww.rug.ac.be/~wheirman/zip/dirprt40.zip

Directory printer
http://www.galcott.com/
 
kikinicoletti said:
Can anyone provide information on how to print the lists of folders and their
sub-folders?? thanks

Try this link:
http://support.microsoft.com/Default.aspx?kbid=321379

To exclude files but include subfolders, modify this line:
dir %1 /-p /o:gn > "%temp%\Listing" (current)
dir %1 /-p /o:gn /s /ad > "%temp%\Listing" (for you)

To get a nice graphical listing, use this line instead:
tree > "%temp%\Listing"
 
kikinicoletti said:
Can anyone provide information on how to print the lists of folders and their
sub-folders?? thanks


From the command prompt (Start > Run > Cmd.exe), simply change to
the desired directory and type "dir > filelist.txt" or "dir > lpt1,"
just as you used to do in DOS. Any of the switches for the DIR command
(type "dir /?") will work with this command, if you wish to modify the
output. You can then subsequently edit the resulting text file using
NotePad, WordPad, Word, etc.

Alternatively:

HOW TO Add a Print Directory Feature for Folders in Windows XP
http://support.microsoft.com/?kbid=321379


--

Bruce Chambers

Help us help you:



They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. -Benjamin Franklin
 
Back
Top