Util.buildPathv

Behaves exactly like g_build_path(), but takes the path elements as a string array, instead of varargs. This function is mainly meant for language bindings. Since 2.8

class Util
static
string
buildPathv
(
string separator
,
char** args
)

Parameters

separator string

a string used to separator the elements of the path.

args char**

NULL-terminated array of strings containing the path elements.

Return Value

Type: string

a newly-allocated string that must be freed with g_free().

Meta