Method
GLib KeyFilesave_to_file
since: 2.40
Declaration [src]
gboolean
g_key_file_save_to_file(
GKeyFile*key_file,
constgchar*filename,
GError**error
)
Description [src]
Writes the contents of key_file to filename using
g_file_set_contents().
If you need stricter guarantees about durability of
the written file than are provided by g_file_set_contents(), use
g_file_set_contents_full() with the return value of
g_key_file_to_data().
This function can fail for any of the reasons that
g_file_set_contents() may fail.
Available since: 2.40
Parameters
filename-
Type:
const gchar*The name of the file to write to.
The data is owned by the caller of the method.The value is a NUL terminated UTF-8 string. error-
Type:
The return location for a recoverable error.
The argument can beNULL.If the return location is notNULL, then you must initialize it to aNULLGError*.The argument will be left initialized toNULLby the method if there are no errors.In case of error, the argument will be set to a newly allocatedGError; the caller will take ownership of the data, and be responsible for freeing it.
Return value
Type: gboolean
True if successful, false otherwise.