printing a folder directory

  • Thread starter Thread starter Allen
  • Start date Start date
A

Allen

A simple question for all of you i'm sure: I'm trying
to print a list of the folders on a certain folder-- from
windows explorer view. Can't do it- select all thinks
you want to print all the CONTENTS in the folder-- i
don't, just the directory

Help is most appreciated.
 
Subject: printing a folder directory
From: "Allen" (e-mail address removed)
Date: 10/13/2003 3:44 PM Eastern Daylight Time
Message-id: <[email protected]>

A simple question for all of you i'm sure: I'm trying
to print a list of the folders on a certain folder-- from
windows explorer view. Can't do it- select all thinks
you want to print all the CONTENTS in the folder-- i
don't, just the directory

Help is most appreciated.

D/L Directory Printer free from www.karenware.com/powertools . It will do what
you want...and much more.

HTH,
John
"Any sufficiently advanced technology is indistinguishable from magic"
***Arthur C. Clarke***
 
To print a list of files or folders within a particular directory complete
the following steps:

1.

Click Start > All Programs > Accesories > and then click Command Prompt
(alternatively click Start > Run and type cmd).

2.

Navigate to the directory for which you wish to create a listing.

3.

Type: dir /b >dirlist.txt

(replace dirlist with the name you wish to assign the text file)

You can also type: dir /b /s >dirlist.txt

To include all files and folders within subdirectories in the current
directory.

The above commands will create a text file within the directory in which
they were executed which can be printed out if you wish.
 
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 Word.

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
 
In
Allen said:
A simple question for all of you i'm sure: I'm trying
to print a list of the folders on a certain folder-- from
windows explorer view. Can't do it- select all thinks
you want to print all the CONTENTS in the folder-- i
don't, just the directory


Here are three ways:

1. Go to a command prompt and issue the command

dir [drive:folder] > prn

If that doesn't work, your printer may not be connected to prn.
In that case issue this command instead:

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.
 

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

Back
Top