Use Print directory to print the directory listing to a file..
Find Here :
http://www.print-directory.com
Hal wrote:
Print directory
17-Sep-08
How do I print a copy of the contents/directory of folder? -- to be
more specific - I want to print the directory of a CD/DVD
TIA
Hal
Previous Posts In This Thread:
Print directory
How do I print a copy of the contents/directory of folder? -- to be
more specific - I want to print the directory of a CD/DVD
TIA
Hal
Re: Print directory
Hal wrote:
===============================
Maybe this freebie would be worth a try:
Karen's Directory Printer
http://www.karenware.com/powertools/ptdirprn.asp
--
John Inzer
Re: Print directory
Directory Print
Here are four ways:
1. Go to a command prompt and issue the command
dir [drive:folder] > c:\tempfilename (you can use any name and put it
in any folder you want)
Then open notepad, open tempfilename, and print it from there.
2. Write (for example in Notepad) a 1-line text file:
DIR %1 /O >LPT1:
Save it as "printdir.bat" in the "Send To" folder.
Then, to print list of files in any folder, right-click that folder
and select Send to | printdir.bat
To include subfolders, change the comand to DIR %1 /O/S >LPT1:
3. Go to
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q321379 and
follow the instructions there.
4. Download and use any of the several freeware/shareware utilities
that can do this, such as the popular
http://www.karenware.com/powertools/ptdirprn.asp
--
Ken Blake, Microsoft MVP - Windows Desktop Experience
Please Reply to the Newsgroup
Re: Print directory
Would the command be able to write to the root of C: without problems in
Vista? (can't check right now, but I don't think so, IIRC)
If he wants a graphical version:
tree [drive:\folder] /f /a > c:\USERNAME\desktop\treelist.txt
...would give that as a text file in the desktop.
ss.
Re: Print directory
Hal wrote:
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 (Should
work the same in Vista)
http://support.microsoft.com/?kbid=321379
Directory Lister
http://www.krksoft.com/index.php
--
Bruce Chambers
Help us help you:
http://support.microsoft.com/default.aspx/kb/555375
They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. ~Benjamin Franklin
Many people would rather die than think; in fact, most do. ~Bertrand Russell
The philosopher has never killed any priests, whereas the priest has
killed a great many philosophers.
~ Denis Diderot
Hello Hal,In addition to John's post, this tutorial will show you how to add
Hello Hal,
In addition to John's post, this tutorial will show you how to add a
"Print File Directory" and " Save File Directory" to the context menu to
make it easy to do.
http://www.vistax64.com/tutorials/146031-context-menu-add-view-print-file-directory.html
Hope this helps,
Shawn
John Inzer;838587 Wrote: