File printer

  • Thread starter Thread starter Podz
  • Start date Start date
P

Podz

I know this has been asked before, and I had a program, but I lost it in
a reinstall.
I would like a program that I can point at a folder, and it will print
the contents of each folder contained in that main folder. Level of
detail is immaterial - filename alone is fine.

Thanks.

P.
 
Podz said:
I know this has been asked before, and I had a program, but I lost it in
a reinstall.
I would like a program that I can point at a folder, and it will print
the contents of each folder contained in that main folder. Level of
detail is immaterial - filename alone is fine.
=================================================

EVERYONE has this program:

1. Dropout into a DOS box.

2. CD to the directory you want printout.

3. On the command-line type:

DIR /S > full_list.txt (the return)

4. In that folder you will now find a text file called FULL_LIST.TXT
You can read it in Notepad or Wordpad or MSWord ... whatever.
And, you can then print it to your printer.

Can anything be simpler than that?
 
Chief said:
=================================================

EVERYONE has this program:

1. Dropout into a DOS box.

2. CD to the directory you want printout.

3. On the command-line type:

DIR /S > full_list.txt (the return)

4. In that folder you will now find a text file called FULL_LIST.TXT
You can read it in Notepad or Wordpad or MSWord ... whatever.
And, you can then print it to your printer.

Can anything be simpler than that?

That is *excellent* !
Many thanks :)

P.
 
Chief Suspect (chief (e-mail address removed)) schrieb/wrote:
DIR /S > full_list.txt (the return)

4. In that folder you will now find a text file called FULL_LIST.TXT
You can read it in Notepad or Wordpad or MSWord ... whatever.
And, you can then print it to your printer.

/a will list ALL files. :)
 
Back
Top