Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Printing a list of folder and file names and details

 
   Windows (Home) -> Help & Support RSS
Next:  Problems with DEP function  
Author Message
Econ Prof

External


Since: Nov 22, 2006
Posts: 1



(Msg. 1) Posted: Wed Nov 22, 2006 8:29 am
Post subject: Printing a list of folder and file names and details
Archived from groups: microsoft>public>windowsxp>help_and_support (more info?)

Windows Explorer displays a list of the files in each folder. But it would
be very useful to be able to print a list of all folder names (perhaps with
the folder size) or all folder names with the files (and their details)
contained in each as a continuous stream of information or, perhaps, just the
contents of one folder with its sub-folders and their contents.

In short, is there some way to generate a printed listing of the contents of
the My Documents file.

Separately, in the Navigation Pane of Outlook, is there some way to display
the list of Favorites or a list of files in the My Documents folder or,
better, a second set of shortcuts to files and web sites.

Thanks for any ideas.

--
Douglas O. Walker
Professor of Economics
Robertson School of Government
Regent University
Virginia Beach, VA 23464
Back to top
Login to vote
Wesley Vogel

External


Since: Sep 24, 2004
Posts: 595



(Msg. 2) Posted: Wed Nov 22, 2006 3:03 pm
Post subject: Re: Printing a list of folder and file names and details [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Several ways to do this. Here are a couple.

Add a Print Directory Feature for Folders in Windows XP
http://www.mvps.org/sramesh2k/PrintDirectory.htm

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

Karen's Directory Printer
http://www.karenware.com/powertools/ptdirprn.asp

You can use the dir command and send the output to a text file.

Open a command prompt...
Start | Run | Type: cmd | Click OK or hit your Enter key.

Change Directory to the folder that you want.

cd C:\Documents and Settings\Your Name Here\blahblah

Hit your Enter key.

Type or paste the following command and hit Enter.

dir /b /o:ng > "%userprofile%\Desktop\Directory.txt"

Directory.txt will be created on your Desktop.

Without Changing Directory.

Open a command prompt and type or paste the following command and hit Enter
after changing the path in the command to the folder that you want.

dir "C:\Documents and Settings\Your Name Here\blahblah" /b
/n>"%userprofile%\Desktop\dirlist.txt"

The line wrapped. There should be one space between /b and /n.

Directory.txt will be created on your Desktop.

/b Uses bare format, no date, time or size listed.

/o:ng O list by files in sorted order. N alphabetic by name. G groups
directories first.

Type: cd /? for Help on the cd command.

Type: dir /? for Help on the dir command.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:4C68AA07-4C80-4DBA-8C37-0D4983D2CA6B@microsoft.com,
Econ Prof <EconProf DeleteThis @discussions.microsoft.com> hunted and pecked:
> Windows Explorer displays a list of the files in each folder. But it
> would be very useful to be able to print a list of all folder names
> (perhaps with the folder size) or all folder names with the files (and
> their details) contained in each as a continuous stream of information
> or, perhaps, just the contents of one folder with its sub-folders and
> their contents.
>
> In short, is there some way to generate a printed listing of the contents
> of the My Documents file.
>
> Separately, in the Navigation Pane of Outlook, is there some way to
> display the list of Favorites or a list of files in the My Documents
> folder or, better, a second set of shortcuts to files and web sites.
>
> Thanks for any ideas.
>
> --
> Douglas O. Walker
> Professor of Economics
> Robertson School of Government
> Regent University
> Virginia Beach, VA 23464
Back to top
Login to vote
Gerry Cornell

External


Since: Oct 20, 2005
Posts: 158



(Msg. 3) Posted: Wed Nov 22, 2006 5:10 pm
Post subject: Re: Printing a list of folder and file names and details [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

PrintFolder (freeware) does the job for me.
http://www.sofotex.com/cgi-bin/ls/page.cgi?page=download&link=2071

Sorry can't help with Outlook.

~~~~~~


Hope this helps.

Gerry
~~~~~~~~~~~~~~~~~~~~~~~~
FCA

Stourport, Worcs, England
Enquire, plan and execute.
~~~~~~~~~~~~~~~~~~~~~~~~
Please tell the newsgroup how any
suggested solution worked for you.
http://dts-l.org/goodpost.htm
~~~~~~~~~~~~~~~~~~~~~~~~

"Econ Prof" <EconProf.TakeThisOut@discussions.microsoft.com> wrote in message
news:4C68AA07-4C80-4DBA-8C37-0D4983D2CA6B@microsoft.com...
> Windows Explorer displays a list of the files in each folder. But it
> would
> be very useful to be able to print a list of all folder names (perhaps
> with
> the folder size) or all folder names with the files (and their details)
> contained in each as a continuous stream of information or, perhaps, just
> the
> contents of one folder with its sub-folders and their contents.
>
> In short, is there some way to generate a printed listing of the contents
> of
> the My Documents file.
>
> Separately, in the Navigation Pane of Outlook, is there some way to
> display
> the list of Favorites or a list of files in the My Documents folder or,
> better, a second set of shortcuts to files and web sites.
>
> Thanks for any ideas.
>
> --
> Douglas O. Walker
> Professor of Economics
> Robertson School of Government
> Regent University
> Virginia Beach, VA 23464
Back to top
Login to vote
sc0rp9

External


Since: Dec 17, 2006
Posts: 1



(Msg. 4) Posted: Sun Dec 17, 2006 3:12 pm
Post subject: Re: Printing a list of folder and file names and details [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Wesley Vogel wrote:
> Several ways to do this. Here are a couple.
>
> Add a Print Directory Feature for Folders in Windows XP
> http://www.mvps.org/sramesh2k/PrintDirectory.htm
>
> HOW TO: Add a "Print Directory" Feature for Folders in Windows XP
> http://support.microsoft.com/kb/321379
>
> Karen's Directory Printer
> http://www.karenware.com/powertools/ptdirprn.asp
>
> You can use the dir command and send the output to a text file.
>
> Open a command prompt...
> Start | Run | Type: cmd | Click OK or hit your Enter key.
>
> Change Directory to the folder that you want.
>
> cd C:\Documents and Settings\Your Name Here\blahblah
>
> Hit your Enter key.
>
> Type or paste the following command and hit Enter.
>
> dir /b /o:ng > "%userprofile%\Desktop\Directory.txt"
>
> Directory.txt will be created on your Desktop.
>
> Without Changing Directory.
>
> Open a command prompt and type or paste the following command and hit Enter
> after changing the path in the command to the folder that you want.
>
> dir "C:\Documents and Settings\Your Name Here\blahblah" /b
> /n>"%userprofile%\Desktop\dirlist.txt"
>
> The line wrapped. There should be one space between /b and /n.
>
> Directory.txt will be created on your Desktop.
>
> /b Uses bare format, no date, time or size listed.
>
> /o:ng O list by files in sorted order. N alphabetic by name. G groups
> directories first.
>
> Type: cd /? for Help on the cd command.
>
> Type: dir /? for Help on the dir command.
>
> --
> Hope this helps. Let us know.
>
> Wes
> MS-MVP Windows Shell/User
>
> In news:4C68AA07-4C80-4DBA-8C37-0D4983D2CA6B@microsoft.com,
> Econ Prof <EconProf DeleteThis @discussions.microsoft.com> hunted and pecked:
> > Windows Explorer displays a list of the files in each folder. But it
> > would be very useful to be able to print a list of all folder names
> > (perhaps with the folder size) or all folder names with the files (and
> > their details) contained in each as a continuous stream of information
> > or, perhaps, just the contents of one folder with its sub-folders and
> > their contents.
> >
> > In short, is there some way to generate a printed listing of the contents
> > of the My Documents file.
> >
> > Separately, in the Navigation Pane of Outlook, is there some way to
> > display the list of Favorites or a list of files in the My Documents
> > folder or, better, a second set of shortcuts to files and web sites.
> >
> > Thanks for any ideas.
> >
> > --
> > Douglas O. Walker
> > Professor of Economics
> > Robertson School of Government
> > Regent University
> > Virginia Beach, VA 23464

Brilliant, many thanks that's the best use of a dos command i've seen
in years
Back to top
Login to vote
Wesley Vogel

External


Since: Sep 24, 2004
Posts: 595



(Msg. 5) Posted: Mon Dec 18, 2006 11:10 am
Post subject: Re: Printing a list of folder and file names and details [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

There are some things that just cannot be done from the GUI, you have to use
the command line.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:1166397128.977957.18380@f1g2000cwa.googlegroups.com,
sc0rp9.TakeThisOut@hotmail.com <sc0rp9.TakeThisOut@hotmail.com> hunted and pecked:
> Wesley Vogel wrote:
>> Several ways to do this. Here are a couple.
>>
>> Add a Print Directory Feature for Folders in Windows XP
>> http://www.mvps.org/sramesh2k/PrintDirectory.htm
>>
>> HOW TO: Add a "Print Directory" Feature for Folders in Windows XP
>> http://support.microsoft.com/kb/321379
>>
>> Karen's Directory Printer
>> http://www.karenware.com/powertools/ptdirprn.asp
>>
>> You can use the dir command and send the output to a text file.
>>
>> Open a command prompt...
>> Start | Run | Type: cmd | Click OK or hit your Enter key.
>>
>> Change Directory to the folder that you want.
>>
>> cd C:\Documents and Settings\Your Name Here\blahblah
>>
>> Hit your Enter key.
>>
>> Type or paste the following command and hit Enter.
>>
>> dir /b /o:ng > "%userprofile%\Desktop\Directory.txt"
>>
>> Directory.txt will be created on your Desktop.
>>
>> Without Changing Directory.
>>
>> Open a command prompt and type or paste the following command and hit
>> Enter after changing the path in the command to the folder that you want.
>>
>> dir "C:\Documents and Settings\Your Name Here\blahblah" /b
>> /n>"%userprofile%\Desktop\dirlist.txt"
>>
>> The line wrapped. There should be one space between /b and /n.
>>
>> Directory.txt will be created on your Desktop.
>>
>> /b Uses bare format, no date, time or size listed.
>>
>> /o:ng O list by files in sorted order. N alphabetic by name. G groups
>> directories first.
>>
>> Type: cd /? for Help on the cd command.
>>
>> Type: dir /? for Help on the dir command.
>>
>> --
>> Hope this helps. Let us know.
>>
>> Wes
>> MS-MVP Windows Shell/User
>>
>> In news:4C68AA07-4C80-4DBA-8C37-0D4983D2CA6B@microsoft.com,
>> Econ Prof <EconProf.TakeThisOut@discussions.microsoft.com> hunted and pecked:
>>> Windows Explorer displays a list of the files in each folder. But it
>>> would be very useful to be able to print a list of all folder names
>>> (perhaps with the folder size) or all folder names with the files (and
>>> their details) contained in each as a continuous stream of information
>>> or, perhaps, just the contents of one folder with its sub-folders and
>>> their contents.
>>>
>>> In short, is there some way to generate a printed listing of the
>>> contents of the My Documents file.
>>>
>>> Separately, in the Navigation Pane of Outlook, is there some way to
>>> display the list of Favorites or a list of files in the My Documents
>>> folder or, better, a second set of shortcuts to files and web sites.
>>>
>>> Thanks for any ideas.
>>>
>>> --
>>> Douglas O. Walker
>>> Professor of Economics
>>> Robertson School of Government
>>> Regent University
>>> Virginia Beach, VA 23464
>
> Brilliant, many thanks that's the best use of a dos command i've seen
> in years
Back to top
Login to vote
Display posts from previous:   
Related Topics:
lost file/folder - I plugged in digital cam to download pic, tried to make new folder, and I believe that I named it. Then I couldn't locate file or pic, through searching and all pic were erased off digital cam... did I lose those pic,?

Printing Problems Etc. - Using IE 6 and a HP printer web pages that I am trying to print don't print. The right margin gets cut off and I can't seem to find the problem. Everything else prints (documents, photos etc) As a sidenote when trying to highlight and then print the....

Blocked Senders List - I use Winxp pro with OE6 Whenever I exit OE6 my Blocked Senders List clears. Is there an on/off switch for it or another way to re-enable it?

Computer doesnt show in browse list - We have hundreds of pcs in active directory, most of these are win xp.. 1 pc does not show up in the browse list. I have done everything, removed it from the ou then added back, all network settings on pc are correct.. etc. Has anyone ever seen this..

Folder Opening Options - Suddenly when i open any folders they open with the "search" option as oposed to "open". If you right click on any folder then "search" is bolded and top of the list, how do i change back yo "open" -- Reagrds P...
       Windows (Home) -> Help & Support All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum
Categories:
  Windows Forums
 Game Forums
 Linux Forums
 Mac Forums
 PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact