Printing Contents Of A Folder

  • Thread starter Thread starter rogersgerl
  • Start date Start date
R

rogersgerl

Can anyone please tell me how to print a list of files in a folder. I
have a folder om my computer full of mp3 files and would like to print
out a list of all of the files. Can anyone tell me how to do this??
Please help.
 
I used to do it in my DOS days with the command:
dir /a >> lpt1
With Windows XP you can open a cmd window and then type
dir /a >> filelist.txt
which will create a text file "filelist.txt" containing the directory
listing. You can print it later with your printer.
I don't know whether there is a direct single-step method.
 
Back
Top