print a list of files

  • Thread starter Thread starter Annie
  • Start date Start date
A

Annie

Does anyone know how to print a list of files and/or
directories from the file open dialog box or from explorer?
 
Funny, I just asked the same question. When I used
WordPerfect, there was a selection that allowed you to do
this. I have just spent 45 minutes trying to figure it
out. Please let me know if you do. Thanks.
 
Annie said:
Does anyone know how to print a list of files and/or
directories from the file open dialog box or from explorer?

Two ways:

Easiest: Display the files in Explorer, then screen shot (Alt-PrtScn),
then past image into Word or something else and print.

Best (but slightly harder for some): In a command prompt (so-called DOS
bos), cd to the directory of interest. Issue the command:

dir > c:\(foldername)\(filename).txt

Then use Notepad, Word, or something to import this file and printer it.
If you want, you can even add additional commands to the dir command,
e.g. dir /Q, and instead of redirecting output to a file (as shown
above), you can redirect output directly to the printer, e.g.

dir /Q > lpt1:
or
dir /Q > \\(servername)\\(printername)
 
Back
Top