How to print all C drive directories

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

Guest

I'd like to learn how to make a hard copy of list of all directories on my C
drive. I would use this to help ensure that (2) computers have the same files.

Can you advise whether this is possible?

Regards....
 
anonymous said:
I'd like to learn how to make a hard copy of list of all directories on my C
drive. I would use this to help ensure that (2) computers have the same files.

Can you advise whether this is possible?
 
Hi,

Open a command prompt (start/run cmd), go to the folder of choice.

Run "dir> file.txt". This will create a text file of the contents of the
folder that you can open in notepad for printing or saving.

If you wish to add the contents of the subdirectories, run "dir
<drive><folder> /s> file.txt".

You may find this useful:

HOW TO: Add "Print Directory" Feature for Folders in Windows XP [Q321379]
http://support.microsoft.com/?kbid=321379

If you head to google.com and search on "free directory printer", you will
also find many other useful tools.

--
Best of Luck,

Rick Rogers, aka "Nutcase" - Microsoft MVP

Associate Expert - WindowsXP Expert Zone

Windows help - www.rickrogers.org
 
In
I'd like to learn how to make a hard copy of list of all
directories
on my C drive. I would use this to help ensure that (2)
computers
have the same files.

Can you advise whether this is possible?


Of course it's possible. Here are three ways:


1. Go to a command prompt and issue the command



dir [drive:folder] > c:\tempfilename (you can use any name and
put it in any folder you want)



Then open notepad, open tempfilename, and print it from there.





2. Go to
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q321379
and follow the instructions there.





3. Download and use any of the several freeware/shareware
utilities that can do this, such as the popular
http://www.karenware.com/powertools/ptdirprn.asp
 
Back
Top