A Windows 98 & ME forum. Win98banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Win98banter forum » Windows 98 » Software & Applications
Site Map Home Authors List Search Today's Posts Mark Forums Read Web Partners

Create Directory Listing TEXT FILE



 
 
Thread Tools Display Modes
  #1  
Old August 3rd 04, 07:42 PM
Tio Pepe
external usenet poster
 
Posts: n/a
Default Create Directory Listing TEXT FILE

In Win98, can one create a TEXT FILE listing the names of
all files inside a given folder (one entry per line)?

On this link
http://support.microsoft.com/default.aspx?scid=kb;en-
us;282257
Microsoft shows how to use Outlook to PRINT a directory
listing (contents of a folder) on a table format.

How can one get the equivalent text file to manipulate the
text entries on the table, for example cut and paste into
another Office Application?

I tried with Outlook to print to a file (it creates a PRN
file) and then open this PRN file with EXCEL to get the
table entries (which is exactly what I want to do!!) but
EXCEL does not properly opens the PRN file created by
OUTLOOK.

I have Office 2000 and Win98. Thanks for your help
  #2  
Old August 3rd 04, 09:17 PM
Alan Edwards
external usenet poster
 
Posts: n/a
Default Create Directory Listing TEXT FILE

You may find it easier to use a directory printing application.
I use ExpPrint: http://www.jddesign.co.uk/ but there are plenty about.

A PRN file is generally formatted for a particular printer, so unless
you use a General-Text Only printer driver, you are unlikely to be
able to do anything but print it.

....Alan

--
Alan Edwards, MS MVP W95/98 Systems
http://dts-l.org/index.html

In microsoft.public.win98.apps, "Tio Pepe"
wrote:

In Win98, can one create a TEXT FILE listing the names of
all files inside a given folder (one entry per line)?

On this link
http://support.microsoft.com/default.aspx?scid=kb;en-
us;282257
Microsoft shows how to use Outlook to PRINT a directory
listing (contents of a folder) on a table format.

How can one get the equivalent text file to manipulate the
text entries on the table, for example cut and paste into
another Office Application?

I tried with Outlook to print to a file (it creates a PRN
file) and then open this PRN file with EXCEL to get the
table entries (which is exactly what I want to do!!) but
EXCEL does not properly opens the PRN file created by
OUTLOOK.

I have Office 2000 and Win98. Thanks for your help


  #3  
Old August 3rd 04, 10:37 PM
Andrew H. Carter (Applied ROT 17 Left, for Email d
external usenet poster
 
Posts: n/a
Default Create Directory Listing TEXT FILE

On Tue, 3 Aug 2004 11:42:25 -0700, "Tio Pepe" wrote:

In Win98, can one create a TEXT FILE listing the names of
all files inside a given folder (one entry per line)?

On this link
http://support.microsoft.com/default.aspx?scid=kb;en-
us;282257
Microsoft shows how to use Outlook to PRINT a directory
listing (contents of a folder) on a table format.

How can one get the equivalent text file to manipulate the
text entries on the table, for example cut and paste into
another Office Application?

I tried with Outlook to print to a file (it creates a PRN
file) and then open this PRN file with EXCEL to get the
table entries (which is exactly what I want to do!!) but
EXCEL does not properly opens the PRN file created by
OUTLOOK.

I have Office 2000 and Win98. Thanks for your help


At the command prompt level it's easy, and is the default method. Also doable is a Batch file (BAT
extension)

Copy the following between the CUT lines and paste inside your PLAIN text editor (Notepad will
work), I would suggest naming the file "PrintDir.bat" including the quotes. Save it to
[C:\Windows\Command]. Then opening Explorer I would navigate in the left pane to where you can see
[C:\Windows\SendTo] and right-click the PrintDir.bat and drag it to the SendTo folder. Then all you
have to do is right click any folder and choose PrintDir and the directory contents will be
generated in a file. This file output in sume cases is better than actually printing it cause you
may want to experiment with the layout before you waste alot of paper .


-----------------CUT-----------------
@dir /s /o:e /v %1 C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
START "C:\My Programs\EditPadLite\EditPad.exe" C:\windows\desktop\Filelist.txt
-----------------CUT-----------------

Once you start making more batch files, you may want to create their own folder, and if you get
enough DOS programs, and if space permits, you may want to let it have it's own partition. I have
mine at [D:\DOS\Batch]


DIR Command
=======================
=======================
Displays a list of files and subdirectories in a directory.

DIR [drive:][path][filename] [/P] [/W] [/A[[:]attributes]]
[/O[[:]sortorder]] [/S] [/b] [/L] [/V] [/4]

[drive:][path][filename]
Specifies drive, directory, and/or files to list.
(Could be enhanced file specification or multiple filespecs.)
/P Pauses after each screenful of information.
/W Uses wide list format.
/A Displays files with specified attributes.
attributes D Directories R Read-only files
H Hidden files A Files ready for archiving
S System files - Prefix meaning not
/O List by files in sorted order.
sortorder N By name (alphabetic) S By size (smallest first)
E By extension (alphabetic) D By date & time (earliest first)
G Group directories first - Prefix to reverse order
A By Last Access Date (earliest first)
/S Displays files in specified directory and all subdirectories.
/B Uses bare format (no heading information or summary).
/L Uses lowercase.
/V Verbose mode.
/4 Displays year with 4 digits (ignored if /V also given).

Switches may be preset in the DIRCMD environment variable. Override
preset switches by prefixing any switch with - (hyphen)--for example, /-W.



--
Sincerely, | (©) (©)
| ------ooo--(_)--ooo------
Andrew H. Carter | /// \\\
d(-_-)b |
  #4  
Old August 28th 04, 06:03 PM
Don
external usenet poster
 
Posts: n/a
Default

There's a program called DDFileCatcher that can save text files with
the folder on a line followed by the files in the folder. It can also
save the same information to the Clipboard or be called from Microsoft
Word and put the file information in a table or just as plain text.
It's at www.ddfilecatcher.com

"Andrew H. Carter (Applied ROT 17 Left, for Email do 17 Right)" wrote in message . ..
On Tue, 3 Aug 2004 11:42:25 -0700, "Tio Pepe" wrote:

In Win98, can one create a TEXT FILE listing the names of
all files inside a given folder (one entry per line)?

On this link
http://support.microsoft.com/default.aspx?scid=kb;en-
us;282257
Microsoft shows how to use Outlook to PRINT a directory
listing (contents of a folder) on a table format.

How can one get the equivalent text file to manipulate the
text entries on the table, for example cut and paste into
another Office Application?

I tried with Outlook to print to a file (it creates a PRN
file) and then open this PRN file with EXCEL to get the
table entries (which is exactly what I want to do!!) but
EXCEL does not properly opens the PRN file created by
OUTLOOK.

I have Office 2000 and Win98. Thanks for your help


At the command prompt level it's easy, and is the default method. Also doable is a Batch file (BAT
extension)

Copy the following between the CUT lines and paste inside your PLAIN text editor (Notepad will
work), I would suggest naming the file "PrintDir.bat" including the quotes. Save it to
[C:\Windows\Command]. Then opening Explorer I would navigate in the left pane to where you can see
[C:\Windows\SendTo] and right-click the PrintDir.bat and drag it to the SendTo folder. Then all you
have to do is right click any folder and choose PrintDir and the directory contents will be
generated in a file. This file output in sume cases is better than actually printing it cause you
may want to experiment with the layout before you waste alot of paper .


-----------------CUT-----------------
@dir /s /o:e /v %1 C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
START "C:\My Programs\EditPadLite\EditPad.exe" C:\windows\desktop\Filelist.txt
-----------------CUT-----------------

Once you start making more batch files, you may want to create their own folder, and if you get
enough DOS programs, and if space permits, you may want to let it have it's own partition. I have
mine at [D:\DOS\Batch]


DIR Command
=======================
=======================
Displays a list of files and subdirectories in a directory.

DIR [drive:][path][filename] [/P] [/W] [/A[[:]attributes]]
[/O[[:]sortorder]] [/S] [/b] [/L] [/V] [/4]

[drive:][path][filename]
Specifies drive, directory, and/or files to list.
(Could be enhanced file specification or multiple filespecs.)
/P Pauses after each screenful of information.
/W Uses wide list format.
/A Displays files with specified attributes.
attributes D Directories R Read-only files
H Hidden files A Files ready for archiving
S System files - Prefix meaning not
/O List by files in sorted order.
sortorder N By name (alphabetic) S By size (smallest first)
E By extension (alphabetic) D By date & time (earliest first)
G Group directories first - Prefix to reverse order
A By Last Access Date (earliest first)
/S Displays files in specified directory and all subdirectories.
/B Uses bare format (no heading information or summary).
/L Uses lowercase.
/V Verbose mode.
/4 Displays year with 4 digits (ignored if /V also given).

Switches may be preset in the DIRCMD environment variable. Override
preset switches by prefixing any switch with - (hyphen)--for example, /-W.

  #5  
Old August 29th 04, 05:02 PM
pjp
external usenet poster
 
Posts: n/a
Default

Just caught this thread so ...

Open a DOS prompt and type "dir filename.txt" (no quotes) redirects the
output to a text file. Use appropriate switches for the dir command to alter
what's saved, e.g. "dir/w" etc.


"Don" wrote in message
om...
There's a program called DDFileCatcher that can save text files with
the folder on a line followed by the files in the folder. It can also
save the same information to the Clipboard or be called from Microsoft
Word and put the file information in a table or just as plain text.
It's at www.ddfilecatcher.com

"Andrew H. Carter (Applied ROT 17 Left, for Email do 17 Right)"

wrote in message
. ..
On Tue, 3 Aug 2004 11:42:25 -0700, "Tio Pepe"

wrote:

In Win98, can one create a TEXT FILE listing the names of
all files inside a given folder (one entry per line)?

On this link
http://support.microsoft.com/default.aspx?scid=kb;en-
us;282257
Microsoft shows how to use Outlook to PRINT a directory
listing (contents of a folder) on a table format.

How can one get the equivalent text file to manipulate the
text entries on the table, for example cut and paste into
another Office Application?

I tried with Outlook to print to a file (it creates a PRN
file) and then open this PRN file with EXCEL to get the
table entries (which is exactly what I want to do!!) but
EXCEL does not properly opens the PRN file created by
OUTLOOK.

I have Office 2000 and Win98. Thanks for your help


At the command prompt level it's easy, and is the default method. Also

doable is a Batch file (BAT
extension)

Copy the following between the CUT lines and paste inside your PLAIN

text editor (Notepad will
work), I would suggest naming the file "PrintDir.bat" including the

quotes. Save it to
[C:\Windows\Command]. Then opening Explorer I would navigate in the

left pane to where you can see
[C:\Windows\SendTo] and right-click the PrintDir.bat and drag it to the

SendTo folder. Then all you
have to do is right click any folder and choose PrintDir and the

directory contents will be
generated in a file. This file output in sume cases is better than

actually printing it cause you
may want to experiment with the layout before you waste alot of paper .


-----------------CUT-----------------
@dir /s /o:e /v %1 C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
ECHO -------- C:\windows\desktop\Filelist.txt
START "C:\My Programs\EditPadLite\EditPad.exe"

C:\windows\desktop\Filelist.txt
-----------------CUT-----------------

Once you start making more batch files, you may want to create their own

folder, and if you get
enough DOS programs, and if space permits, you may want to let it have

it's own partition. I have
mine at [D:\DOS\Batch]


DIR Command
=======================
=======================
Displays a list of files and subdirectories in a directory.

DIR [drive:][path][filename] [/P] [/W] [/A[[:]attributes]]
[/O[[:]sortorder]] [/S] [/b] [/L] [/V] [/4]

[drive:][path][filename]
Specifies drive, directory, and/or files to list.
(Could be enhanced file specification or multiple

filespecs.)
/P Pauses after each screenful of information.
/W Uses wide list format.
/A Displays files with specified attributes.
attributes D Directories R Read-only files
H Hidden files A Files ready for

archiving
S System files - Prefix meaning not
/O List by files in sorted order.
sortorder N By name (alphabetic) S By size (smallest first)
E By extension (alphabetic) D By date & time (earliest

first)
G Group directories first - Prefix to reverse order
A By Last Access Date (earliest first)
/S Displays files in specified directory and all

subdirectories.
/B Uses bare format (no heading information or summary).
/L Uses lowercase.
/V Verbose mode.
/4 Displays year with 4 digits (ignored if /V also given).

Switches may be preset in the DIRCMD environment variable. Override
preset switches by prefixing any switch with - (hyphen)--for example,

/-W.


  #6  
Old August 29th 04, 11:33 PM
Andrew H. Carter
external usenet poster
 
Posts: n/a
Default

On Sun, 29 Aug 2004 13:02:27 -0300, "pjp"
scribbled some thoughts:

NOTE: Best viewed in a fixed pitch font

Just caught this thread so ...

Open a DOS prompt and type "dir filename.txt" (no quotes) redirects the
output to a text file. Use appropriate switches for the dir command to alter
what's saved, e.g. "dir/w" etc.


NOTE: For any newbies, there needs to be a space in the
above between "DIR" and "/w", else it won't work.

--
Sincerely, | (©) (©)
| ------ooo--(_)--ooo------
Andrew H. Carter | /// \\\
d(-_-)b |
  #7  
Old August 30th 04, 05:18 AM
pjp
external usenet poster
 
Posts: n/a
Default

Did you check before writing?

"Dir/w" (no space) works fine on my 98SE setup, just opened a DOS box and
tried it to confirm. I'll add that I'm fairly sure it's that way "forever",
e.g. since DOS 2.0 at least (1's very foggy in my memory). In fact pretty
sure (but off top of head) that DOS recognizes "/" as a "switch" so space is
not needed for all it's internal commands (and perhaps all it's included
externals but not sure about that). I also seem to recall that there's even
a DOS INT 21 service call to change what the "switch" character is.
Hopefully I won't have to dig out the old 5 1/4's for each and every ver to
confirm

"Andrew H. Carter" wrote in message
...
On Sun, 29 Aug 2004 13:02:27 -0300, "pjp"
scribbled some thoughts:

NOTE: Best viewed in a fixed pitch font

Just caught this thread so ...

Open a DOS prompt and type "dir filename.txt" (no quotes) redirects the
output to a text file. Use appropriate switches for the dir command to

alter
what's saved, e.g. "dir/w" etc.


NOTE: For any newbies, there needs to be a space in the
above between "DIR" and "/w", else it won't work.

--
Sincerely, | (©) (©)
| ------ooo--(_)--ooo------
Andrew H. Carter | /// \\\
d(-_-)b |



  #8  
Old August 30th 04, 10:32 AM
Andrew H. Carter
external usenet poster
 
Posts: n/a
Default

On Mon, 30 Aug 2004 01:18:32 -0300, "pjp"
scribbled some thoughts:

NOTE: Best viewed in a fixed pitch font

Did you check before writing?

"Dir/w" (no space) works fine on my 98SE setup, just opened a DOS box and
tried it to confirm. I'll add that I'm fairly sure it's that way "forever",
e.g. since DOS 2.0 at least (1's very foggy in my memory). In fact pretty
sure (but off top of head) that DOS recognizes "/" as a "switch" so space is
not needed for all it's internal commands (and perhaps all it's included
externals but not sure about that). I also seem to recall that there's even
a DOS INT 21 service call to change what the "switch" character is.
Hopefully I won't have to dig out the old 5 1/4's for each and every ver to
confirm


Well, slap me and call me Sally. Though that is probably
only one of a couple where such are allowed, and only if the
format is of:

Command /Switch Term

Learn something new everyday!
--
Sincerely, | (©) (©)
| ------ooo--(_)--ooo------
Andrew H. Carter | /// \\\
d(-_-)b |
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
missing .dll file, windows won't load greg Setup & Installation 3 October 25th 04 09:45 PM
Please help! Display settings !! Mitzi Monitors & Displays 12 July 11th 04 05:19 AM
Windows can't create a Temp file in Windows? Canapril General 3 June 29th 04 12:16 AM
Win98SE - problem with USB printer HBYardSale Software & Applications 2 June 20th 04 06:27 PM
unable to create file folders (Win ME) johny General 1 May 20th 04 05:46 AM


All times are GMT +1. The time now is 10:16 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Win98banter.
The comments are property of their posters.