print a list of files

A

Annie

Does anyone know how to print a list of files and/or
directories from the file open dialog box or from explorer?
 
M

ML

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.
 
R

Rob Schneider

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top