evidentemente.yo <[EMAIL PROTECTED]> wrote:
>  On 24 jun, 14:32, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> > Probably what you want is this...
> >
> > from subprocess import call
> >
> > rc = call(["mypath/myfile.exe",arg1,arg2])
> >
> > rc will contain the exit status
> >
> > See the subprocess module for more things you can do
>
>  Hey, thank you very much!!!:D
> 
>  Would it matter if my .exe doesn't return any value? would it return
>  like an "ok" or something???

Your exe will return a value (it is part of the OS) but you can ignore
it if you want.  Just use

call(["mypath/myfile.exe",arg1,arg2])

-- 
Nick Craig-Wood <[EMAIL PROTECTED]> -- http://www.craig-wood.com/nick
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to