How can I Print list of Directories

  • Thread starter Thread starter ngask
  • Start date Start date
N

ngask

I would like to print out a list of all the files on a CD
I have so I can tell if a certain file is on the disk. Is
there a way to do that in Windows Explorer? Or any other
application.

Thanks
 
hi.

open a command prompt and navigate to the direcory you
would like to print eg

D:
cd test

and then

dir >c:\directory.txt

where '>c:\directory.txt' will create a file called
directory.txt in the root of C:\ with the contents as
opposed to displaying it on the screen.
 
Thanks, that works great!!!!
-----Original Message-----
hi.

open a command prompt and navigate to the direcory you
would like to print eg

D:
cd test

and then

dir >c:\directory.txt

where '>c:\directory.txt' will create a file called
directory.txt in the root of C:\ with the contents as
opposed to displaying it on the screen.

.
 
Back
Top