GLib.get_user_special_dir
function get_user_special_dir(directory: GLib.UserDirectory): String {
// Gjs wrapper for g_get_user_special_dir()
}
Returns the full path of a special directory using its logical id.
On UNIX this is done using the XDG special user directories. For compatibility with existing practise, GLib.UserDirectory.directory_desktop falls back to `$HOME/Desktop` when XDG special user directories have not been set up.
Depending on the platform, the user might be able to change the path of the special directory without requiring the session to restart; GLib will not reflect any change once the special directories are loaded.
Since 2.14
- directory
the logical id of special directory
- Returns
the path to the specified special directory, or null if the logical id was not found. The returned string is owned by GLib and should not be modified or freed.