You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a simple header file that provides a handful of functions to obtain
paths to configuration files, regardless of the operating system the
application is running under.
It requires no dependencies beyond each platform's standard API.
This code is placed in the public domain. You are free to use it for any
purpose. If you add new platform support, please contribute a patch!
Basic use:
#include "cfgpath.h"
char cfgdir[MAX_PATH];
get_user_config_file(cfgdir, sizeof(cfgdir), "myapp");
if (cfgdir[0] == 0) {
printf("Unable to find home directory.\n");
return 1;
}
printf("Saving configuration file to %s\n", cfgdir);
To integrate it into your own project, just copy cfgpath.h. All the other
files are for testing to make sure it works correctly, so you don't need them
unless you intend to make changes and send me a patch.
Supported platforms are currently:
Linux
Mac OS X
Windows
Patches adding support for more platforms would be greatly appreciated.
About
Cross platform C header for obtaining paths to user configuration files and directories