Hello,
Is there a function in Linux which is equivalent to Shellexecute in Windows?
Thanks.
Shellexecute_() in Linux
Re: Shellexecute_() in Linux
A function that will open the file like:
Is there something like that?ShellExecute_(0, "", image.zip, "", "", #SW_SHOWNORMAL)
-
- Addict
- Posts: 4777
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: Shellexecute_() in Linux
Open the directory, file, or URL name$ with its default application:shire wrote:A function that will open the file like:Is there something like that?ShellExecute_(0, "", image.zip, "", "", #SW_SHOWNORMAL)
Code: Select all
RunProgram("xdg-open", name$, "")
Re: Shellexecute_() in Linux
@Little John:
Yes, that's it. Thanks a lot.
Yes, that's it. Thanks a lot.
