Skip to main content

Printing Folder Contents

Sometimes the old ways were a lot simpler. In DOS and UNIX printing a file directory was as simple as "DIR". And if you wanted to be really fancy you could add a couple characters to switch the listing format.

DIR command line switches:
  • /B Uses bare format (no heading information or summary)
  • /L Forces lowercase display of file names
  • /O List by files in sorted order:
    • N by name (alphabetical)
    • S by size (smallest first)
    • E by extension (alphabetical)
    • D by date/time (oldest first)
    • G group directories first
    • - using this prefix reverses the sort order
  • /P Pauses after each screenful of information
  • /S Lists files in the specified directory and all subdirectories
  • /W Uses wide list format
  • /X Displays 8.3 versions of long file names
And if you wanted to put this list in a text file to save, copy, paste or print it was as simple as:
dir /b /s > DirectoryListing.txt

Somewhere in the ease of use of folders and drag and drop what was simple became hard. In DOS and UNIX this was all easy. It can be again.

Follow these steps from Microsoft Support to add simple right-click "Print Directory Listing" functionality in Windows XP (for Vista see the support article). And stick around for how to customize these directions to print a directory listing to a text file.


Step 1: Create the Printdir.bat file

1. Click Start, click Run, type notepad, and then click OK.
2. Paste the following text into Notepad:
@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit
3. On the File menu, click Exit, and then click Yes to save the changes.
4. In the Save As dialog box, type the following text, and then click Save:
%windir%\Printdir.bat
Step 2: Create a new action for file folders
1. Click Start, click Control Panel, and then click Folder Options.
Or, click Start, point to Settings, click Control Panel, and then click Folder Options.
2. On the File Types tab, click File Folder.
3. Click Advanced, and then click New.
4. In the Action box, type Print Directory Listing.
5. In the Application used to perform action box, type printdir.bat.
6. Click OK.
7. Click OK two times, and then click Close.

Step 3: Edit the registry
After you follow the steps in the previous sections, Search Companion may start when you double-click a folder instead of the folder being opened. Or, if you have associated other actions with file folders, those actions may be performed instead.

To resolve this issue, follow these steps:
1. Start Registry Editor.
2. Locate the Default value under the following registry subkey:
HKEY_CLASSES_ROOT\Directory\shell
3. On the Edit menu, click Modify.
4. In the Value data box, type none.
5. Click OK.
6. Exit Registry Editor.

That's all well and good. But what if you actually like trees?

With minor edits to these directions we may save a directory listing to a text file in the parent directory.

Step 1: Create the Txtfiledir.bat file
1. Click Start, click Run, type notepad, and then click OK.
2. Paste the following text into Notepad:
@echo off
dir %1 /-p /o:gn > "DirectoryListing.txt"
exit
3. On the File menu, click Exit, and then click Yes to save the changes.
4. In the Save As dialog box, type the following text, and then click Save:
%windir%\Txtfiledir.bat
Step 2: Create a new action for file folders
1. Click Start, click Control Panel, and then click Folder Options.
Or, click Start, point to Settings, click Control Panel, and then click Folder Options.
2. On the File Types tab, click File Folder.
3. Click Advanced, and then click New.
4. In the Action box, type Write DirectoryListing.txt.
5. In the Application used to perform action box, type txtfiledir.bat.
6. Click OK.
7. Click OK two times, and then click Close.

Step 3: Edit the registry
After you follow the steps in the previous sections, Search Companion may start when you double-click a folder instead of the folder being opened. Or, if you have associated other actions with file folders, those actions may be performed instead.

To resolve this issue, follow these steps:
1. Start Registry Editor.
2. Locate the Default value under the following registry subkey:
HKEY_CLASSES_ROOT\Directory\shell
3. On the Edit menu, click Modify.
4. In the Value data box, type none.
5. Click OK.
6. Exit Registry Editor.

That will get you started, now revisit the command line and DIR switches and roll your own.

Comments

Unknown said…
Rather than mess up your registry, try an application instead: Directory Report
http://www.file-utilities.com
It can print more attributes than DOS and in many formats

Popular posts from this blog

Auto Format (and Color) Outlook Appointments

A few years ago I got turned on to the idea of indexing your life by color. In a quick glance your mind can comprehend really complex patterns. By coloring entries in my calendar I am able to tell immediately if I am available or if a future appointment conflicts with a work meeting. There are a number of ways to set this up. Outlook allows you to add a label to every appointment. However this is an Outlook specific feature and I sync my calendar across Outlook, Yahoo! and iCalendar. The later two don't even have labels. Besides, calendars should be simple. Complexity only hinders usability, so I prefer an automated solution. How to color appointments in Outlook automatically: In Calendar, right-click the calendar grid, and then click Automatic Formatting on the shortcut menu. Click Add, and then type a name for the rule. In the Label list, click a color. Click Condition to specify the conditions under which the color will be applied. Note: If you manually assign a color to a

Attachment Reminder - and more for MS Outlook

I just did it again. We don't like to admit it, but we all have. You write a long letter describing the attachment, press send and then 10 seconds later remember you didn't actually attach the message. I finally decided to do something about it. Turns out it isn't too hard. Chiefly because Jimmy Peña at Code for Excel and Outlook already did all the hard work of writing up an excellent MS Outlook Etiquette Check Macro that does all the dirty work for you. What's left for you to do? In MS Outlook go to Tools > Macros > Visual Basic Editor Under the Project Panel (far left) Browse to Project1 > Microsoft Office Outlook Objects > ThisOutlookSession Double-click ThisOutlookSesson to Open (if you haven't been here before this will be a big blank canvas) Visit Code for Excel and Outlook Etiquette Check Code and select "Copy to Clipboard" at the top of the code. Or you can also copy from the code I've modified below if you prefer.

Simple HTTP Redirect with Querystring in IIS7

HTTP Redirect seems simple enough. Always was in IIS6 and in IIS7 there's even a button labeled HTTP Redirect that promises relative redirects.  It looks like it'll be as easy Apache finally.  That is until you try to redirect a querystring.  Then everything bombs. Turns out it still is relatively easy, except you have to know that Microsoft changed $S$Q to $V$Q. Why? $Ss and $Gs I suspect. And How. In our example we'll redirect all pages under http://olddomain.com/content to http://mydomain.com/content. Pick the virtual directory you want to redirect. e.g. http://olddomain.com/content Click HTTP Redirect under IIS in the IIS management console. In the HTTP Redirect Dialog: Check Redirect requests to this destination Enter your new path ending with $V$Q.  e.g. http://mydomain.com$V$Q Counter-intuitively check Redirect all request to exact destination (instead of relative destination) Choose the appropriate Status Code (Permanent or Temporary)