Getting Print of file names in a dirctory.

  • Thread starter Thread starter A-DESIGN
  • Start date Start date
A

A-DESIGN

Without using any commands on DOS mode, is it possible to print a list of
the files in a directory or put them inside a DOC or TEXT file ? Thanks.

Afshin.
 
I make not claims as to how successful you will be: however this is stright
of the MS website

How to add the Print Directory feature for folders in Windows XP

Important This article contains information about modifying the registry.
Before you modify the registry, make sure to back it up and make sure that
you understand how to restore the registry if a problem occurs. For
information about how to back up, restore, and edit the registry, click the
following article number to view the article in the Microsoft Knowledge Base:
256986 Description of the Microsoft Windows Registry

IN THIS TASK
SUMMARY

Create the Printdir.bat File
Create a New Action for File Folders
Edit the Registry
SUMMARY
This article describes how to add the Print Directory feature for folders in
Microsoft Windows XP. After you follow the steps that are listed in this
article, you can right-click a folder, and then click Print Directory Listing
to print a directory listing of the contents of a folder.

back to the top
Create the Printdir.bat file
To create the Printdir.bat file, follow these steps:
Click Start, click Run, type the following command, and then click OK:
notepad

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

On the File menu, click Exit, and then click Yes to save the changes.
In the Save As dialog box, type the following text, and then click Save:
%windir%\Printdir.bat

back to the top
Create a new action for file folders
Click Start, click Control Panel (or, point to Settings, and then click
Control Panel), and then click Folder Options.
On the File Types tab, click File Folder.
Click Advanced, and then click New.
In the Action box, type:
Print Directory Listing

In the Application used to perform action box, type:
printdir.bat

Click OK.
Click OK, click OK, and then click Close.
back to the top
Edit the registry
Warning If you use Registry Editor incorrectly, you may cause serious
problems that may require you to reinstall your operating system. Microsoft
cannot guarantee that you can solve problems that result from using Registry
Editor incorrectly. Use Registry Editor at your own risk.

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:
Start Registry Editor.
Locate the Default value under the following key in the registry:
HKEY_CLASSES_ROOT\Directory\shell

Click Modify on the Edit menu.
In the File data box, type:
none

Click OK.
Quit Registry Editor.
 
A-DESIGN said:
Without using any commands on DOS mode, is it possible to print a list of
the files in a directory or put them inside a DOC or TEXT file ? Thanks.

Afshin.

Popular freeware solution.

http://www.karenware.com/powertools/ptdirprn.asp

--
D

I'm not an MVP a VIP nor do I have ESP.
I was just trying to help.
Please use your own best judgment before implementing any suggestions or
advice herein.
No warranty is expressed or implied.
Your mileage may vary.
See store for details. :)

Remove shoes to E-mail.
 
Archived info:

Open a command prompt (start/run cmd), go to the folder of choice.

Run "dir> file.txt". This will create a text file of the contents of the
folder that you can open in notepad for printing or saving.

If you wish to add the contents of the subdirectories, run "dir
<drive><folder> /s> file.txt".

You may find this useful:

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

If you head to google.com and search on "free directory printer", you will
also find many other useful tools.

--
Best of Luck,

Rick Rogers, aka "Nutcase" - Microsoft MVP

Associate Expert - WindowsXP Expert Zone

Windows help - www.rickrogers.org
 
Thank you all.

Touch Base said:
Archived info:

Open a command prompt (start/run cmd), go to the folder of choice.

Run "dir> file.txt". This will create a text file of the contents of the
folder that you can open in notepad for printing or saving.

If you wish to add the contents of the subdirectories, run "dir
<drive><folder> /s> file.txt".

You may find this useful:

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

If you head to google.com and search on "free directory printer", you will
also find many other useful tools.

--
Best of Luck,

Rick Rogers, aka "Nutcase" - Microsoft MVP

Associate Expert - WindowsXP Expert Zone

Windows help - www.rickrogers.org


A-DESIGN said:
Without using any commands on DOS mode, is it possible to print a list of
the files in a directory or put them inside a DOC or TEXT file ? Thanks.

Afshin.
 
Very important question.
Please if any one out there knows how; do not wait, send an answer.
Thanks
 
I know how, but as you deleted the previous messages I don't have the context to answer.
 
Back
Top