launch
Launches the application. Passes @files to the launched application as arguments, using the optional @context to get information about the details of the launcher (like what screen it is on). On error, @error will be set accordingly.
To launch the application without arguments pass a NULL
@files list.
Note that even if the launch is successful the application launched can fail to start if it runs into problems during startup. There is no way to detect this.
Some URIs can be changed when passed through a GFile (for instance unsupported URIs with strange formats like mailto:), so if you have a textual URI you want to pass in as argument, consider using method@Gio.AppInfo.launch_uris instead.
The launched application inherits the environment of the launching process, but it can be modified with method@Gio.AppLaunchContext.setenv and method@Gio.AppLaunchContext.unsetenv.
On UNIX, this function sets the GIO_LAUNCHED_DESKTOP_FILE
environment variable with the path of the launched desktop file and GIO_LAUNCHED_DESKTOP_FILE_PID
to the process id of the launched process. This can be used to ignore GIO_LAUNCHED_DESKTOP_FILE
, should it be inherited by further processes. The DISPLAY
, XDG_ACTIVATION_TOKEN
and DESKTOP_STARTUP_ID
environment variables are also set, based on information provided in @context.
Return
TRUE
on successful launch, FALSE
otherwise.
Parameters
a list of iface@Gio.File objects
the launch context