Re: Question: Printing List of Files In a Folder
- From: "Ken Blake, MVP" <kblake@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 27 Feb 2007 13:04:11 -0700
oldtimer wrote:
I have a folder containing .doc and .xls files. I would like to
print a list of the files in that folder.
Even a "print screen" option would be acceptable.
How can I do this?
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: Shell/User
Please reply to the newsgroup
.
- Prev by Date: Re: Windows is corrupted
- Next by Date: Re: XP Pro running slow
- Previous by thread: Re: Question: Printing List of Files In a Folder
- Next by thread: Re: Question: Printing List of Files In a Folder
- Index(es):
Relevant Pages
|