GLib.get_user_runtime_dir
function get_user_runtime_dir(): String { // Gjs wrapper for g_get_user_runtime_dir() }
Returns a directory that is unique to the current user on the local system.
On UNIX platforms this is determined using the mechanisms described in the [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec). This is the directory specified in the `XDG_RUNTIME_DIR` environment variable. In the case that this variable is not set, GLib will issue a warning message to stderr and return the value of GLib.get_user_cache_dir.
On Windows this is the folder to use for local (as opposed to roaming) application data. See documentation for CSIDL_LOCAL_APPDATA. Note that on Windows it thus is the same as what GLib.get_user_config_dir returns.
Since 2.28
- Returns
a string owned by GLib that must not be modified or freed.