Adam wrote:
> I am trying to run an external program in my code using
> os.system('exename -exearg') but the exe has an "&" in it so windows
> thinks it's two commands any way around this?
>
Have you tries quoting the exename:
os.system('"exename" -exearg')
That might help. How do you run it f
I am trying to run an external program in my code using
os.system('exename -exearg') but the exe has an "&" in it so windows thinks
it's two commands any way around this?
Adam
--
http://mail.python.org/mailman/listinfo/python-list