On Sat, 14 Apr 2012 02:09:07 +0000, berol wrote:
Would like to print a list of folders, subdirectories and files. See a suggestion to use the command line and some old DOS method. Couldn't get that to work. If nothing within Win 7 is there a free or paid for third party program that will accomplish what I need. Can't believe there is nothing better within Win 7 than some old DOS option.
Here are five ways:
- Select all the files, press and hold the shift key, then
right-click and select Copy as path. This copies the list of file
names to the clipboard.
Paste the results into any document such as a txt or doc file & print
that.
- 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. - Write (for example in Notepad) a 1-line text file:
DIR %1 /O >LPT1:
Save it as "printdir.bat" in the "Send To" folder.
Then, to print list of files in any folder, right-click that folder
and select Send to | printdir.bat
To include subfolders, change the command to DIR %1 /O/S >LPT1:
- Go to
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q321379 and
follow the instructions there. - 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
Ken Blake, Microsoft MVP