Re: [Tutor] Open a directory in the default file manager

2008-05-19 Thread Tim Michelsen
Hi! > is there any function/module that allows me to open a directory in the > default file manager of a operating system? On Windows you can use os.startfile(). On "pure" Unices there's no such thing as filetype associations However, if you use a desktop environment, you can spawn xdg-open

Re: [Tutor] Open a directory in the default file manager

2008-05-16 Thread Thomas Pani
Tim Michelsen wrote: > Hello, > is there any function/module that allows me to open a directory in the > default file manager of a operating system? On Windows you can use os.startfile(). On "pure" Unices there's no such thing as filetype associations However, if you use a desktop environment, yo