executing an external app

Joe Francia usenet at -OBFUSCATION-joefrancia.com
Wed Jan 28 16:21:42 EST 2004


Joseph Krauze wrote:
> Hi all,
> 
> I have a simple question which I cannot solve (relatively new to Python).
> I want to write a script that executes an application on the go.  I looked
> into the exec*e() calls but the problem there is that they do not return.
> I also looked into execfile() but here the PATH is not taken into account
> and I couldn't figure out to pass the file that's executed arguments.
> 
> So, is there a simple way to execute an external app?
> i.e. execvpe('cat', 'myFile') - this will not return
> 
> Thanks,
> Joseph

Look at os.spawn* or os.popen*

-- 
Soraia: http://www.soraia.com



More information about the Python-list mailing list