"Gregory Piñero" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi guys,
I'm trying to run this statement: os.system(r'"C:\Program Files\Mozilla Firefox\firefox.exe"' + ' "www.blendedtechnologies.com"') The goal is to have firefox open to that website. When I type r'"C:\Program Files\Mozilla Firefox\firefox.exe"' + ' "www.blendedtechnologies.com"' in the python interpreter I get: '"C:\\Program Files\\Mozilla Firefox\\firefox.exe" "www.blendedtechnologies.com"' And when I copy this into my command prompt (less outermost ' ) firefox opens up to that page like I would expect. However in python nothing happens and I get exit status 1. I'm using Python 2.3 on Windows XP pro service pack 2. I'd greatly appriciate any help. Thanks, Greg =============== These seemed to work on one machine for Python 2.1 and 2.4. >>> os.system('\"C:/Program Files/Mozilla Firefox/firefox.exe\" >>> http://www.blendedtechnologies.com/') 1 >>> os.system('\"C:\\Program Files\\Mozilla Firefox\\firefox.exe\" >>> http://www.blendedtechnologies.com/') 1 >>> os.system(r'"C:\Program Files\Mozilla Firefox\firefox.exe" >>> http://www.blendedtechnologies.com/') 1
-- http://mail.python.org/mailman/listinfo/python-list