Print Directory List

  • Thread starter Thread starter MelGrace
  • Start date Start date
M

MelGrace

I would like to print the names of the list of files in a particular folder,
on a CD, or a floppy. Can I do that someway?
 
Open command console> type tree /? for help, and choose the switches you want.
In essence, you want the following command: tree (drive): /f > lpt1. That
outputs your file structure to the printer directly. You can save it as a batch
or cmd file and make a shortcut (minimized) so that it runs it silently in the
background when clicked on. Hope that helps.

--
Regards,

Durand


"Chris Jackson" <chrisjATmvpsDOTorgNOSPAM> wrote in message
| http://www.annoyances.org/exec/show/article01-451
|
| --
| Chris Jackson
| Software Engineer
| Microsoft MVP - Windows Shell/UI
| Windows XP Associate Expert
| --
| More people read the newsgroups than read my email.
| Reply to the newsgroup for a faster response.
| (Control-G using Outlook Express)
| --
|
| | > I would like to print the names of the list of files in a particular
| folder,
| > on a CD, or a floppy. Can I do that someway?
| >
| >
|
|
 
Hi,

Click [Start] [Run] [Cmd]
Goto the appropriate directory.
Type "Dir /b >list.txt"
[include "/s" for sub-directories listing]

Open List.txt in notepad and print the contents.


==See: Microsoft Knowledgebase Article==

How to Add the Print Directory Feature to Windows Explorer:
http://support.microsoft.com/?kbid=272623

--
Ramesh - Microsoft MVP
http://www.mvps.org/sramesh2k

Microsoft Most Valuable Professional Program
http://mvp.support.microsoft.com

~ Please reply to newsgroup ~


I would like to print the names of the list of files in a particular folder,
on a CD, or a floppy. Can I do that someway?
 
Back
Top