query_default_handler


Description:

public AppInfo query_default_handler (Cancellable? cancellable = null) throws Error

Example: Get the default application to handle a file:

public static int main (string[] args) {
try {
List<string> uris = new List<string> ();
uris.append ("http://developer.gnome.org/");

File file = File.new_for_uri (uris.nth_data (0));
AppInfo appinfo = file.query_default_handler ();
appinfo.launch_uris (uris, null);
} catch (Error e) {
print ("Error: %s\n", e.message);
}
return 0;
}

valac --pkg gio-2.0 GLib.File.query_default_handler.vala