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?
|
|
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. UpdateOkay, the "start" command will do it, so this should work. Mac OS/X:
Windows:
|
||||||||||||||||||||
|
|
|
If you want to go the
You can't just use:
because
but only if there are no spaces in the FILE_NAME. While
does something else than:
The first quoted string should set the title of the window. To make it work with spaces, we have to do:
which is what the code on top does. |
|||
|
|
|
|
If you want to specify the app to open the file with on Mac OS X, use this:
|
||
|
|
|
|
|
||||
|
|
|
Use the subprocess module available on Python 2.4+, not os.system, so you don't have to deal with shell escaping.
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. |
||||
|
|
|
Just for completeness (it wasn't in the question), xdg-open will do the same on Linux. |
||
|
|
|
|
I prefer:
(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 |
||||
|
|
|
on mac os you can call 'open'
this would open the file with TextEdit, or whatever app is set as default for this filetype |
||
|
|
