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:
Later UpdateOkay, clearly this silly-ass controversy continues, so let's just look at doing this with subprocess.
Now, what are the advantages of this? In theory, this is more secure -- but in fact we're needing to execute a command line one way or the other; in either environment, we need the environment and services to interpet, get paths, and so forth. In neither case are we executing arbitrary text, so it doesn't have an inherent "but you can type It doesn't actually give us any more error detection, we're still depending on the "But Conclusion: using |
|||||||||||||||||||||
|
|
Use the
The double parentheses are because |
|||||||||||||||
|
|
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 |
|||||
|
|
If you have to use an heuristic method, you may consider
I tried this code and it worked fine in Windows 7 and Ubuntu Natty:
|
|||
|
|
Start does not support long path names and white spaces. You have to convert it to 8.3 compatible paths.
The file has to exist in order to work with the API call. |
|||
|
|
|
on mac os you can call 'open'
this would open the file with TextEdit, or whatever app is set as default for this filetype |
|||
|
|
|
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. |
||||
|
|
|
I am pretty late to the lot, but here is a solution using the windows api. This always opens the associated application.
A lot of magic constants. The first zero is the hwnd of the current program. Can be zero. The other two zeros are optional parameters (parameters and directory). 5 == SW_SHOW, it specifies how to execute the app. Read the ShellExecute API docs for more info. |
||||
|
|
|
If you want to specify the app to open the file with on Mac OS X, use this:
|
|||
|
|