Re: read output and store in file

2005-07-11 Thread tuxlover
use os.path.walk() or os.walk() Tuxlover -- http://mail.python.org/mailman/listinfo/python-list

Re: read output and store in file

2005-07-11 Thread Grant Edwards
On 2005-07-11, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm a beginner, and what I want to accomplish is this: > > 1. For all files under several folders, do some processing (using an > existing program). The program will output one line of text for each > file. > > 2. Store the output of a

read output and store in file

2005-07-11 Thread [EMAIL PROTECTED]
Hi, I'm a beginner, and what I want to accomplish is this: 1. For all files under several folders, do some processing (using an existing program). The program will output one line of text for each file. 2. Store the output of all files in one file. It would be great if someone can give me a cr