Print list of file names from Explorer???

  • Thread starter Thread starter Anne
  • Start date Start date
A

Anne

How can I print a list of the file names in a directory
and sub-directories?
I have Windows XP.
 
Open command prompt and type
dir /S > test.txt
This will list all files and folders (including subfolders) in the current
directory and write it to a file called test.txt. You can open the file in a
word processor and print it. For help on the command prompt, use the Windows
help.
 
How can I print a list of the file names in a directory
and sub-directories?


There are several ways to do this:

1. If you have a parallel port printer, from a command prompt,
type dir >LPT1

2. From a command prompt, type dir >filename. Then open notepad
and print filename.

3. Go to http://support.microsoft.com/?kbid=321379 and follow the
directions there.

4. Download a freeware program to do this. Here's one which
usually gets good reports:
http://www.karenware.com/powertools/ptdirprn.asp
 
Back
Top