How to Print a Folder's Contents

S

Steve

Can someone please tell me how to print out a list of a folder's
contents - including files and folders that are within a Windows folder.
I cannot seem to copy the names to Word or Excel - and I would rather
not have to make successive Alt. Print screens to capture many pages files.

Thank you.
 
S

Steve

Hi JohnF,

BTW: Do you know of any application that will go in the opposite
direction; A program that will that a list of names - and generate a
bunch of individual folders using those names.

Thanks so much.
 
R

Ramesh [MVP]

Click [Start] [Run] [Cmd]
Goto the appropriate directory.
Type "Dir /b >C:\list.txt"
[include "/s" for sub-directories listing]

Open List.txt in notepad and print the contents.


==See: Microsoft Knowledgebase Article==

How to Add the Print Directory Feature to Windows Explorer:
http://support.microsoft.com/?kbid=272623
 
J

johnf

No :)

--
johnf
Hi JohnF,

BTW: Do you know of any application that will go in the opposite
direction; A program that will that a list of names - and generate a
bunch of individual folders using those names.

Thanks so much.
 
D

Dmitry Demchuk

Hi!

you can use a very similar command from command console
if you like to get files and folders
dir /s
if you need only folders
dir /s /a:d

if you want to get it in Word you need to redirect results in a
text you need to use redirection - just add to end of command
the following:
filename.txt

After that you can open this file in Word anâ format it as you
wish.

B.R. Dmitry
 
J

johnf

Yes, but it's a bit inflexible. Suggest you have a look at the Printfolders
Options.
 
B

Bruce Chambers

Greetings --

From the command prompt (Start > Run > Cmd.exe), simply change to
the desired directory and type "dir > filelist.txt" or "dir > lpt1,"
just as you used to do in DOS. Any of the switches for the DIR
command (type "dir /?") will work with this command, if you wish to
modify the output. You can then subsequently edit the resulting text
file using NotePad, WordPad, Word, etc.

Alternatively:

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


Bruce Chambers

--
Help us help you:



You can have peace. Or you can have freedom. Don't ever count on
having both at once. -- RAH
 
R

Rob Schneider

It would be a very simple program, or editing a batch file. But odds
are you don't know who to do this. So another related way is:

Get all the file names into a file (as described previously) with the
dir > filename

Then edit that file and remove all the unnecessary directory/file
information (dates, times, etc.)

Insert at the front of each line:

mkdir filename

so that it will "make a directory" with that file name.

change the file extension to *.bat or *.cmd and run it.

Hope this is useful to you. Let us know.

rms
 
M

Meezulz

I use ACDSee for exactly that purpose. Under Tools, click Generate File
Listing.
It produces a NotePad file listing the contents of a folder which you can
print or copy elsewhere.
Regards,
Meezulz
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top