[PythonCE] Can I execute external programs from PythonCe?

2008-09-04 Thread Igor Kaplan
Hi pythonce experts, [Igor Kaplan] Would like to ask for the suggestion, is there any way to execute the external process from pythonce code? There is the os.exec* functions, however as I understand, they will terminate the current python process and run the external application. I would need to

Re: [PythonCE] Can I execute external programs from PythonCe?

2008-09-04 Thread René Dudfield
hi, this page might help: http://docs.python.org/lib/module-subprocess.html I don't know if it works on CE though. cu, On Thu, Sep 4, 2008 at 8:29 PM, Igor Kaplan <[EMAIL PROTECTED]> wrote: > Hi pythonce experts, > [Igor Kaplan] > Would like to ask for the suggestion, is there any way to ex

Re: [PythonCE] Can I execute external programs from PythonCe?

2008-09-04 Thread Jared Forsyth
I think what you want is os.startfile On Thu, Sep 4, 2008 at 6:29 AM, Igor Kaplan <[EMAIL PROTECTED]> wrote: > Hi pythonce experts, > [Igor Kaplan] > Would like to ask for the suggestion, is there any way to execute the > external process from pythonce code? There is the os.exec* functions, > ho