a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Hosting from $3.99 per month!

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions. dd

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

Print Directory

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> General Web Development >> Print Directory
Page: [1]
 
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
Print Directory - 1/6/2005 17:39:57   
I have had occasions where it would have been useful to be able to print off the content of directories.

Hunting around, I found this. I'm not sure which OS they relate to as the instructions aren't 100% correct for WIN XP but they're close enough to be able to figure out.

Result. Open Explorer, right click on a folder and you have a new option - Print Directory Listing

http://support.microsoft.com/default.aspx?scid=KB;EN-US;q272623


[edit] Warning, see post below if you are doing this with Windows XP. You may need to make a change to the registry [/edit]

< Message edited by jaybee -- 1/11/2005 5:53:16 >


_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?
Giomanach

 

Posts: 6136
Joined: 11/19/2003
From: England
Status: offline

 
RE: Print Directory - 1/6/2005 17:52:06   
quote:

APPLIES TO
• Microsoft Windows Server 2003, Enterprise Edition
• Microsoft Windows Server 2003, Datacenter Edition
• Microsoft Windows Server 2003, Standard Edition
• Microsoft Windows 2000 Server
• Microsoft Windows 2000 Advanced Server
• Microsoft Windows 2000 Datacenter Server
• Microsoft Windows Millennium Edition
• Microsoft Windows 98 Second Edition
• Microsoft Windows 98 Standard Edition

:)

_____________________________




(in reply to jaybee)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: Print Directory - 1/6/2005 18:29:49   
OK, so I didn't read that bit. I was trying to get the print to work and it does.

Picky Picky. :)

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to Giomanach)
Donkey

 

Posts: 3929
Joined: 11/13/2001
From: Blackfield United Kingdom
Status: offline

 
RE: Print Directory - 1/6/2005 19:15:02   
Works OK on w2k. Thanks JB.

_____________________________

:)

I have a higher and grander standard of principle than George Washington. He could not lie; I can, but I won't.
Samuel Clemens

(in reply to jaybee)
emoss2

 

Posts: 105
From: Long Island, NY, USA
Status: offline

 
RE: Print Directory - 1/10/2005 22:45:19   
Well, it worked for me on XP, but now all my folders open to the search window rather than the folder list, directory tree..., and it appears that I cannot delete the association to the prin.bat file....

Any suggestions ???

EBM

(in reply to Donkey)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: Print Directory - 1/11/2005 4:49:18   
Ahhhh, so that's why my folders are doing that.

You can get round it by clicking the folder in the folder view in the left hand pane rather than in the main body of explore. Then they open up as normal.

View>explorer bar>folders

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to emoss2)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: Print Directory - 1/11/2005 5:49:35   
OK, this works. Warning - I've only tried this in XP. so if anyone has the search box opening problem in earlier O/S do this at your own risk.

Edit the registry

follow these steps exactly:
1. Start Registry Editor (start>run> type regedit in the box)

2. Find HKEY_CLASSES_ROOT\Directory\shell, select it, and then select the Default file name in the right hand pane. (don't try to open them, just select them)

3. Click Modify on the Edit menu.

4. In the File data box, type: none

5. Click OK.

6. Quit Registry Editor.

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to jaybee)
clum1

 

Posts: 762
From: Glasgow, Scotland
Status: offline

 
RE: Print Directory - 1/11/2005 6:22:04   
Alternatively, you can (from a command prompt) print the directory listing to a file that can then be edited before printing out.

The basic command dir > c:\files.txt will create a list of everything in the c:\ directory in a file (also in c:) called files.txt. You can open this in any text editor to clean it up for printing etc.

Adding the switch /s at the end (dir > c:\files.txt /s) will recursively search through every directory, listing all files and subfolders. On my PC, this gave me a 7Mb text file, so be careful how you use it! An obvious use for this is to list all the files in a web, eg at:

c:\inetpub\wwwroot\MyWeb>dir > c:\files.txt /s

Will list all the files in MyWeb. You can clean out all the _vti stuff easily in the text file.

There's tons of other switches available; I can't remember them all though a google search on Dos commands should find them,

happy listing,

clum1

_____________________________

kenilweb.com; simple, effective web design

"So I said to the Gym instructor "Can you teach me to do the splits?" He said "How flexible are you?". I said "I can't make Tuesdays"."

Tim Vine

(in reply to jaybee)
Giomanach

 

Posts: 6136
Joined: 11/19/2003
From: England
Status: offline

 
RE: Print Directory - 1/11/2005 6:48:29   
quote:

6. Quit Registry Editor.


7. Restart machine or Log off then Log On

After editing registry, always reload the current windows environment

quote:

There's tons of other switches available; I can't remember them all though a google search on Dos commands should find them,

Enter the command dir /? that will bring up all attributes usable by the dir command

_____________________________




(in reply to clum1)
Net55

 

Posts: 9
Joined: 2/14/2004
Status: offline

 
RE: Print Directory - 1/12/2005 1:45:21   
OK, this works. Warning - I've only tried this in XP. so if anyone has the search box opening problem in earlier O/S do this at your own risk.

In reply to the above problem:

Follow the same instructions as for print, but call this one 'open'.
Use explorer.exe, then set it as the default.

(in reply to Giomanach)
ou812

 

Posts: 1610
Joined: 1/5/2002
From: San Diego
Status: offline

 
RE: Print Directory - 1/22/2005 15:41:52   
I haven't tried this but ran across while looking for something else. http://www.dirfile.com/dirprinting.htm

_____________________________

-brian

EnterpriseDB: Enterprise-class relational database management system
PostgreSQL: The world's most advanced open source database

(in reply to Net55)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: Print Directory - 5/7/2005 8:34:51   
quote:

I haven't tried this but ran across while looking for something else. http://www.dirfile.com/dirprinting.htm


Quick update:

I just grabbed this and it works great. You can select which bits of a directory you want to print or sort them, whatever.

If you choose to install in a directory other than the default of Program Files, make sure you have created the directory first or you'll get an install error.


_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to ou812)
Page:   [1]
OutFront Discoveries

All Forums >> Web Development >> General Web Development >> Print Directory
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts