OT: List of files w/i a directory

2009-06-09 Thread Paul Kent
I'm getting ready to send off a CD to my client's customer and have been asked 
to provide a list of files on the CD. 

I've got a vague recollection of a DOS command that would list all of the files 
in a directory and it's subdirectories and pipe them to a txt file, but its 
been err, well, a bit longer than a week or two since I've used that command. 

I'm thinking it's something like 


Dir *.* a switch that means look down thru all subdirs list.txt 

That command would do a directory of everything in the folder and it's 
subdirectories and pipe them to a txt file. 

Can someone help me with the correct syntax for the DOS command or an easier 
way to do this with the magic of Windows (XP and Office 2003 in case that makes 
a difference)? 

Plz reply directly as I'm on digest and kind of need to get crackin on this 
today if at all possible. 

Thanks in advance. 




J. Paul Kent 
206-383-0539 
___


You are currently subscribed to Framers as arch...@mail-archive.com.

Send list messages to fram...@lists.frameusers.com.

To unsubscribe send a blank email to 
framers-unsubscr...@lists.frameusers.com
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.


Re: OT: List of files w/i a directory

2009-06-09 Thread Art Campbell
In the parent directory, execute:

dir /s  foo.txt

If the files are already on the CD, t may take a few minutes to run,
especially on a CD, and you can't write the list file to the CD, so
you'd need to add a directory and path to the text file name.

Art

Art Campbell
   art.campb...@gmail.com
  ... In my opinion, there's nothing in this world beats a '52
Vincent and a redheaded girl. -- Richard Thompson
  No disclaimers apply.
   DoD 358



On Tue, Jun 9, 2009 at 1:45 PM, Paul Kentjopak...@comcast.net wrote:
 I'm getting ready to send off a CD to my client's customer and have been 
 asked to provide a list of files on the CD.

 I've got a vague recollection of a DOS command that would list all of the 
 files in a directory and it's subdirectories and pipe them to a txt file, but 
 its been err, well, a bit longer than a week or two since I've used that 
 command.

 I'm thinking it's something like


 Dir *.* a switch that means look down thru all subdirs list.txt

 That command would do a directory of everything in the folder and it's 
 subdirectories and pipe them to a txt file.

 Can someone help me with the correct syntax for the DOS command or an easier 
 way to do this with the magic of Windows (XP and Office 2003 in case that 
 makes a difference)?

 Plz reply directly as I'm on digest and kind of need to get crackin on this 
 today if at all possible.

 Thanks in advance.




 J. Paul Kent
 206-383-0539
 ___


 You are currently subscribed to Framers as art.campb...@gmail.com.

 Send list messages to fram...@lists.frameusers.com.

 To unsubscribe send a blank email to
 framers-unsubscr...@lists.frameusers.com
 or visit 
 http://lists.frameusers.com/mailman/options/framers/art.campbell%40gmail.com

 Send administrative questions to listad...@frameusers.com. Visit
 http://www.frameusers.com/ for more resources and info.

___


You are currently subscribed to Framers as arch...@mail-archive.com.

Send list messages to fram...@lists.frameusers.com.

To unsubscribe send a blank email to 
framers-unsubscr...@lists.frameusers.com
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.


OT: List of files w/i a directory

2009-06-09 Thread steve
I think you want to use the tree command.

Set the working directory to where you want to begin making the tree. At a
command prompt, type:

tree /F /A   filelist.txt

The /F will cause the files to be listed. The /A will make it ASCII in the
tree branches, which works better for text.

I still find use for this command when I need to send a file structure
description to somebody. :-)

Steve
___


You are currently subscribed to Framers as arch...@mail-archive.com.

Send list messages to fram...@lists.frameusers.com.

To unsubscribe send a blank email to 
framers-unsubscr...@lists.frameusers.com
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.


RE: List of files w/i a directory

2009-06-09 Thread Syed.Hosain
In a dos window:

Dir /s  file.txt

will do what you want. The /s means list subdirectories.

BTW, in a dos window, doing: 

Command /?

Lists all the options for that command.

Z

-Original Message-
From: framers-boun...@lists.frameusers.com
[mailto:framers-boun...@lists.frameusers.com] On Behalf Of Paul Kent
Sent: Tuesday, June 09, 2009 10:46 AM
To: TECHWR; Framers
Subject: OT: List of files w/i a directory

I'm getting ready to send off a CD to my client's customer and have been
asked to provide a list of files on the CD. 

I've got a vague recollection of a DOS command that would list all of
the files in a directory and it's subdirectories and pipe them to a txt
file, but its been err, well, a bit longer than a week or two since I've
used that command. 

I'm thinking it's something like 


Dir *.* a switch that means look down thru all subdirs list.txt 

That command would do a directory of everything in the folder and it's
subdirectories and pipe them to a txt file. 

Can someone help me with the correct syntax for the DOS command or an
easier way to do this with the magic of Windows (XP and Office 2003 in
case that makes a difference)? 

Plz reply directly as I'm on digest and kind of need to get crackin on
this today if at all possible. 

Thanks in advance. 
___


You are currently subscribed to Framers as arch...@mail-archive.com.

Send list messages to fram...@lists.frameusers.com.

To unsubscribe send a blank email to 
framers-unsubscr...@lists.frameusers.com
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.


OT: List of files w/i a directory

2009-06-09 Thread Paul Kent
I'm getting ready to send off a CD to my client's customer and have been asked 
to provide a list of files on the CD. 

I've got a vague recollection of a DOS command that would list all of the files 
in a directory and it's subdirectories and pipe them to a txt file, but its 
been err, well, a bit longer than a week or two since I've used that command. 

I'm thinking it's something like 


Dir *.*  >list.txt 

That command would do a directory of everything in the folder and it's 
subdirectories and pipe them to a txt file. 

Can someone help me with the correct syntax for the DOS command or an easier 
way to do this with the magic of Windows (XP and Office 2003 in case that makes 
a difference)? 

Plz reply directly as I'm on digest and kind of need to get crackin on this 
today if at all possible. 

Thanks in advance. 




J. Paul Kent 
206-383-0539 


OT: List of files w/i a directory

2009-06-09 Thread Peter Gold
* Start > Run > command  to open a DOS window and keep it open
  At the prompt, type "help dir" (without quotes)

* Search with Google for directory print list utilities, some free and
some shareware.

HTH

Regards,

Peter
__
Peter Gold
KnowHow ProServices



On Tue, Jun 9, 2009 at 12:45 PM, Paul Kent wrote:
> I'm getting ready to send off a CD to my client's customer and have been 
> asked to provide a list of files on the CD.
>
> I've got a vague recollection of a DOS command that would list all of the 
> files in a directory and it's subdirectories and pipe them to a txt file, but 
> its been err, well, a bit longer than a week or two since I've used that 
> command.
>
> I'm thinking it's something like
>
>
> Dir *.*  >list.txt
>
> That command would do a directory of everything in the folder and it's 
> subdirectories and pipe them to a txt file.
>
> Can someone help me with the correct syntax for the DOS command or an easier 
> way to do this with the magic of Windows (XP and Office 2003 in case that 
> makes a difference)?
>
> Plz reply directly as I'm on digest and kind of need to get crackin on this 
> today if at all possible.
>
> Thanks in advance.
>
>
>
>
> J. Paul Kent
> 206-383-0539
> ___


OT: List of files w/i a directory

2009-06-09 Thread Art Campbell
In the parent directory, execute:

dir /s > foo.txt

If the files are already on the CD, t may take a few minutes to run,
especially on a CD, and you can't write the list file to the CD, so
you'd need to add a directory and path to the text file name.

Art

Art Campbell
   art.campbell at gmail.com
  "... In my opinion, there's nothing in this world beats a '52
Vincent and a redheaded girl." -- Richard Thompson
  No disclaimers apply.
   DoD 358



On Tue, Jun 9, 2009 at 1:45 PM, Paul Kent wrote:
> I'm getting ready to send off a CD to my client's customer and have been 
> asked to provide a list of files on the CD.
>
> I've got a vague recollection of a DOS command that would list all of the 
> files in a directory and it's subdirectories and pipe them to a txt file, but 
> its been err, well, a bit longer than a week or two since I've used that 
> command.
>
> I'm thinking it's something like
>
>
> Dir *.*  >list.txt
>
> That command would do a directory of everything in the folder and it's 
> subdirectories and pipe them to a txt file.
>
> Can someone help me with the correct syntax for the DOS command or an easier 
> way to do this with the magic of Windows (XP and Office 2003 in case that 
> makes a difference)?
>
> Plz reply directly as I'm on digest and kind of need to get crackin on this 
> today if at all possible.
>
> Thanks in advance.
>
>
>
>
> J. Paul Kent
> 206-383-0539
> ___
>
>
> You are currently subscribed to Framers as art.campbell at gmail.com.
>
> Send list messages to framers at lists.frameusers.com.
>
> To unsubscribe send a blank email to
> framers-unsubscribe at lists.frameusers.com
> or visit 
> http://lists.frameusers.com/mailman/options/framers/art.campbell%40gmail.com
>
> Send administrative questions to listadmin at frameusers.com. Visit
> http://www.frameusers.com/ for more resources and info.
>


OT: List of files w/i a directory

2009-06-09 Thread st...@siliconprairiesoftware.com
I think you want to use the "tree" command.

Set the working directory to where you want to begin making the tree. At a
command prompt, type:

tree /F /A  > filelist.txt

The /F will cause the files to be listed. The /A will make it ASCII in the
tree branches, which works better for text.

I still find use for this command when I need to send a file structure
description to somebody. :-)

Steve


List of files w/i a directory

2009-06-09 Thread syed.hos...@aeris.net
In a dos window:

Dir /s > file.txt

will do what you want. The "/s" means list subdirectories.

BTW, in a dos window, doing: 

"Command /?"

Lists all the options for that "command".

Z

-Original Message-
From: framers-boun...@lists.frameusers.com
[mailto:framers-bounces at lists.frameusers.com] On Behalf Of Paul Kent
Sent: Tuesday, June 09, 2009 10:46 AM
To: TECHWR; Framers
Subject: OT: List of files w/i a directory

I'm getting ready to send off a CD to my client's customer and have been
asked to provide a list of files on the CD. 

I've got a vague recollection of a DOS command that would list all of
the files in a directory and it's subdirectories and pipe them to a txt
file, but its been err, well, a bit longer than a week or two since I've
used that command. 

I'm thinking it's something like 


Dir *.*  >list.txt 

That command would do a directory of everything in the folder and it's
subdirectories and pipe them to a txt file. 

Can someone help me with the correct syntax for the DOS command or an
easier way to do this with the magic of Windows (XP and Office 2003 in
case that makes a difference)? 

Plz reply directly as I'm on digest and kind of need to get crackin on
this today if at all possible. 

Thanks in advance.