Randy Syring wrote: > Do you need to quote the value sent to shell.run() since there is a > space in it? > > shell.Run('"C:\Documents and > Settings\dave\Desktop\MyMobile\MyMobiler\MyMobiler.exe"')
Right. More than that, he needs to escape the backslashes or use a raw string, as in: shell.Run(r'"C:\Documents and Settings..."') -- Tim Roberts, t...@probo.com Providenza & Boekelheide, Inc. _______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32