vote up 10 vote down star
2

I need to be able to open a document using it's default application in Windows and Mac OS. Basically, I want to do the same thing that happens when you double click on the document icon in Explorer or Finder. What is the best way to do this in Python?

flag

52% accept rate

8 Answers

vote up 6 vote down check

In Mac OS, you can use the "open" command. There is a Windows API call that does something similar, but I don't remember it offhand.

Update

Okay, the "start" command will do it, so this should work.

Mac OS/X:

os.system("open "+filename);

Windows:

os.system("start "+filename);
link|flag
1  
Depending where filename comes form, this is a perfect example of why os.system() is insecure and bad. subprocess is better. – Devin Jeanpierre Mar 28 at 16:36
2  
Nick's answer looked fine to me. Nothing got in the way. Explaining things using wrong examples isn't easily justifiable. – Devin Jeanpierre Mar 29 at 17:10
1  
It's less secure and less flexible than using subprocess. That sounds wrong to me. – Devin Jeanpierre Mar 29 at 18:35
1  
Then you're resorting to argument against the person. Stick to the actual issue. It doesn't matter if I'm confused or not. – Devin Jeanpierre Mar 29 at 19:43
2  
Of course it matters. It's the difference between a good answer and a bad answer (or a terrible answer). The docs for os.system() themselves say "Use the subprocess module." What more is needed? That's deprecation enough for me. – Devin Jeanpierre Mar 30 at 19:46
show 10 more comments
vote up 0 vote down

If you want to go the sybprocess.call() way, it should look like this on Windows:

import subprocess
subprocess.call(('cmd', '/C', 'start', '', FILE_NAME))

You can't just use:

supbrocess.call(('start', FILE_NAME))

because start is not an executable but a command of the cmd.exe program. This works:

subprocess.call(('cmd', '/C', 'start', FILE_NAME))

but only if there are no spaces in the FILE_NAME.

While subprocess.call method enquotes the parameters properly, the start command has a rather strange syntax, where:

start notes.txt

does something else than:

start "notes.txt"

The first quoted string should set the title of the window. To make it work with spaces, we have to do:

start "" "my notes.txt"

which is what the code on top does.

link|flag
vote up 0 vote down

If you want to specify the app to open the file with on Mac OS X, use this: os.system("open -a [app name] [file name]")

link|flag
vote up 7 vote down
import os
import subprocess

def click_on_file(filename):
    try:
        os.startfile(filename):
    except AttributeError:
        subprocess.call(['open', filename])
link|flag
Huh, I didn't know about startfile. It would be nice if the Mac and Linux versions of Python picked up similar semantics. – Nick Jan 12 '09 at 18:27
Relevant python bug: bugs.python.org/issue3177 - provide a nice patch, and it might get accepted =) – gnud Oct 18 at 20:01
vote up 13 vote down

Use the subprocess module available on Python 2.4+, not os.system, so you don't have to deal with shell escaping.

import subprocess, os
if os.name = 'mac':
    subprocess.call(('open', filepath))
elif os.name = 'nt':
    subprocess.call(('start', filepath))

The double parentheses are because subprocess.call wants a sequence as its first argument, so we're using a tuple here. On Linux systems with Gnome there is also a "gnome-open" command that does the same thing.

link|flag
Using 'start' in subprocess.call() doesn't work on Windows -- start is not really an executable. – Tomas Sedovic Oct 18 at 19:10
nitpick: on all linuxen (and I guess most BSDs) you should use xdg-open - linux.die.net/man/1/xdg-open – gnud Oct 18 at 19:57
vote up 10 vote down

Just for completeness (it wasn't in the question), xdg-open will do the same on Linux.

link|flag
vote up 3 vote down

I prefer:

os.startfile(path, 'open')

(python docs) 'open' does not have to be added (it is the default). The docs specifically mention that this is like double-clicking on a file's icon in Windows Explorer.

Edit: Windows only

link|flag
This is windoze only. – Noah Jan 12 '09 at 15:35
Thanks. I didn't notice the availability, since the docs have it appended to the last paragraph. In most other sections, the availability note occupies its own line. – DrBloodmoney Jan 12 '09 at 17:14
vote up 0 vote down

on mac os you can call 'open'

import os
os.popen("open myfile.txt")

this would open the file with TextEdit, or whatever app is set as default for this filetype

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.