Python Script for Running a Python Program over Different Files inthe Directory

Ivo Spam at ivonet.nl
Sat Mar 13 13:13:56 EST 2004


look at the execfile( filename[, globals[, locals]])

command in de manpages

or the following
           execl( path, arg0, arg1, ...)

      execle( path, arg0, arg1, ..., env)

      execlp( file, arg0, arg1, ...)

      execlpe( file, arg0, arg1, ..., env)

      execv( path, args)

      execve( path, args, env)

      execvp( file, args)

      execvpe( file, args, env)


Use the other examples to iterate
-- 
Cheerz,
Ivo.
http://IvoNet.nl


============================
"Shalen chhabra" <shalen_itbhu at hotmail.com> wrote in message
news:mailman.351.1079166133.19534.python-list at python.org...
> Hey,
>
> Can anyone give me a snippet for running a python program over all the
files
> in the directory.
> For ex:  I have ten files in a directory and I want to run a python
program
> against all of these files, I wish to do the same using another python
code
> instead of running each of these files one by one, which would be
cumbersome
> giving the argv of each file every single time.
>
> This can be easily done using a shell script but I just wanted to have a
> flavour of python for this.
>
> Thanks
> Shalen
>
> _________________________________________________________________
> Fast. Reliable. Get MSN 9 Dial-up - 3 months for the price of 1!
> (Limited-time Offer)
http://click.atdmt.com/AVE/go/onm00200361ave/direct/01/
>
>





More information about the Python-list mailing list