quot;wesley chun" <[EMAIL PROTECTED]>
2006.08.07 22:28
To
"János Juhász"
<[EMAIL PROTECTED]>
cc
tutor@python.org
Subject
Re: [Tutor] os.system()
with NO_WAIT
> os.system('vedicom.exe')
>
> Have you got any idea how I can strart this windows GU
> os.system('vedicom.exe')
>
> Have you got any idea how I can strart this windows GUI program with not
> waiting its return.
instead of os.system(), you want to use the subprocess module if you
are using Python 2.4+:
http://docs.python.org/lib/module-subprocess.html
calling subprocess.Po
Dear Guys,
I have a small script that is running on a terminal
server's client session.
###
import os
import time
import glob
def send():
print 'I am checking %s' % time.ctime()
if len(glob.glob(r'U:\ediout\DESADV\*.doc'))
> 0:
os.system('vedicom.exe')
if __name__ == '__mai