GNOME Bugzilla – Bug 355334
gkeyfile should allow manual specification of a search path
Last modified: 2007-04-19 20:53:31 UTC
it would be nice if one could have gkeyfile look in a list of directories for a specific keyfile. this behaviour would be much like how it searches the xdg_data_dirs but would allow the programmer to give their own list of directories. this seems like it would be an easy API to add. you might even add two: one that takes 'char **' and one that takes a : delimited 'char *'
sounds not entirely unreasonable, either void g_key_file_set_data_dirs (GKeyFile *keyfile, const char **dirs) or g_key_file_load_from_dirs (GKeyFile *keyfile, const char *dirs)
Created attachment 84928 [details] [review] patch This adds: gboolean g_key_file_load_from_dirs (GKeyFile *key_file, const gchar *file, const gchar **search_dirs, gchar **full_path, GKeyFileFlags flags, GError **error); And makes g_key_file_load_from_data_dirs use it internally. What do you think?
Created attachment 84929 [details] Simple test case
Looks fine to commit.
Committed to trunk. Sorry for the delay. 2007-04-19 William Jon McCann <mccann@jhu.edu> * glib/gkeyfile.[ch]: (find_file_in_data_dirs), (g_key_file_load_from_dirs), (g_key_file_load_from_data_dirs): Add g_key_file_load_from_dirs for looking through a search path for a key-file. (#355334)