Mercurial > minori
view src/filesystem.cpp @ 8:b1f73678ef61
update
text paragraphs are now their own objects, as they should be
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 26 Aug 2023 03:39:34 -0400 |
parents | 07a9095eaeed |
children |
line wrap: on
line source
#ifdef _WIN32 #include <shlobj.h> #elif defined(MACOSX) #include "sys/osx/filesystem.h" #elif defined(__linux__) #include <unistd.h> #include <sys/types.h> #include <pwd.h> #endif #include <filesystem> #include <limits.h> #include <QMessageBox> #include "config.h" #include "filesystem.h" #include "string_utils.h" std::filesystem::path get_config_path(void) { std::filesystem::path cfg_path; #ifdef _WIN32 char buf[PATH_MAX+1]; if (SHGetFolderPathAndSubDir(NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE, NULL, 0, CONFIG_DIR, buf) == S_OK) cfg_path = std::filesystem::path(buf) / CONFIG_NAME; #elif defined(MACOSX) /* pass all of our problems to */ cfg_path = std::filesystem::path(StringUtils::Utf8ToWstr(osx::GetApplicationSupportDirectory())) / CONFIG_DIR / CONFIG_NAME; #else // just assume POSIX if (getenv("HOME") != NULL) cfg_path = std::filesystem::path(getenv("HOME")) / ".config" / CONFIG_DIR / CONFIG_NAME; #ifdef __linux__ else cfg_path = std::filesystem::path(getpwuid(getuid())->pw_dir) / ".config" / CONFIG_DIR / CONFIG_NAME; #endif // __linux__ #endif return cfg_path; }