Optionalproperties: Partial<{}>Clears the contents of the path buffer.
This function should be use to free the resources in a stack-allocated
GLib.PathBuf initialized using g_path_buf_init() or
g_path_buf_init_from_path().
Clears the contents of the path buffer and returns the built path.
This function returns NULL if the GLib.PathBuf is empty.
See also: g_path_buf_to_path()
the built path
Frees a GLib.PathBuf allocated by g_path_buf_new().
Frees a GLib.PathBuf allocated by g_path_buf_new(), and
returns the path inside the buffer.
This function returns NULL if the GLib.PathBuf is empty.
See also: g_path_buf_to_path()
the path
Initializes a GLib.PathBuf instance with the given path.
Optionalpath: stringa file system path
the initialized path builder
Removes the last element of the path buffer.
If there is only one element in the path buffer (for example, / on
Unix-like operating systems or the drive on Windows systems), it will
not be removed and false will be returned instead.
GPathBuf buf, cmp;
g_path_buf_init_from_path (&buf, "/bin/sh");
g_path_buf_pop (&buf);
g_path_buf_init_from_path (&cmp, "/bin");
g_assert_true (g_path_buf_equal (&buf, &cmp));
g_path_buf_clear (&cmp);
g_path_buf_pop (&buf);
g_path_buf_init_from_path (&cmp, "/");
g_assert_true (g_path_buf_equal (&buf, &cmp));
g_path_buf_clear (&cmp);
g_path_buf_clear (&buf);
TRUE if the buffer was modified and FALSE otherwise
Extends the given path buffer with path.
If path is absolute, it replaces the current path.
If path contains a directory separator, the buffer is extended by
as many elements the path provides.
On Windows, both forward slashes and backslashes are treated as
directory separators. On other platforms, G_DIR_SEPARATOR_S is the
only directory separator.
GPathBuf buf, cmp;
g_path_buf_init_from_path (&buf, "/tmp");
g_path_buf_push (&buf, ".X11-unix/X0");
g_path_buf_init_from_path (&cmp, "/tmp/.X11-unix/X0");
g_assert_true (g_path_buf_equal (&buf, &cmp));
g_path_buf_clear (&cmp);
g_path_buf_push (&buf, "/etc/locale.conf");
g_path_buf_init_from_path (&cmp, "/etc/locale.conf");
g_assert_true (g_path_buf_equal (&buf, &cmp));
g_path_buf_clear (&cmp);
g_path_buf_clear (&buf);
a path
the same pointer to buf, for convenience
Adds an extension to the file name in the path buffer.
If extension is NULL, the extension will be unset.
If the path buffer does not have a file name set, this function returns
FALSE and leaves the path buffer unmodified.
Optionalextension: stringthe file extension
TRUE if the extension was replaced, and FALSE otherwise
Sets the file name of the path.
If the path buffer is empty, the filename is left unset and this
function returns FALSE.
If the path buffer only contains the root element (on Unix-like operating
systems) or the drive (on Windows), this is the equivalent of pushing
the new file_name.
If the path buffer contains a path, this is the equivalent of
popping the path buffer and pushing file_name, creating a
sibling of the original path.
GPathBuf buf, cmp;
g_path_buf_init_from_path (&buf, "/");
g_path_buf_set_filename (&buf, "bar");
g_path_buf_init_from_path (&cmp, "/bar");
g_assert_true (g_path_buf_equal (&buf, &cmp));
g_path_buf_clear (&cmp);
g_path_buf_set_filename (&buf, "baz.txt");
g_path_buf_init_from_path (&cmp, "/baz.txt");
g_assert_true (g_path_buf_equal (&buf, &cmp);
g_path_buf_clear (&cmp);
g_path_buf_clear (&buf);
the file name in the path
TRUE if the file name was replaced, and FALSE otherwise
Retrieves the built path from the path buffer.
On Windows, the result contains backslashes as directory separators, even if forward slashes were used in input.
If the path buffer is empty, this function returns NULL.
the path
StaticequalCompares two path buffers for equality and returns TRUE
if they are equal.
The paths inside the path buffers are not going to be normalized,
so X/Y/Z/A/.., X/./Y/Z and X/Y/Z are not going to be considered
equal.
This function can be passed to g_hash_table_new() as the
key_equal_func parameter.
a path buffer to compare
a path buffer to compare
GLib.PathBuf is a helper type that allows you to easily build paths from individual elements, using the platform specific conventions for path separators.
You can also load a full path and then operate on its components:
Since
2.76