printing contents of a file directory in windows vista

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,

i am wanting to print the contents of a file folder (print directory), im
using windows vista. how do you do this in windows vista.

thanks,
john...
 
You can dump the contents of a directory to a file and print that file
afterwards.
E.g. in the cmd environment, type

dir c:\mydir /w > c:\temp\myfile.txt <enter>

This will redirect the output of the dir command into a textfile called
myfile.txt (to be found in the directory c:\temp) and will show the contents
of the directory called c:\mydir.

Hope this is an answer to your question...
Daniel
 
Back
Top