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, [email protected] Providenza & Boekelheide, Inc. _______________________________________________ python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
