Sha256: 2c469b0c56a678f897b7be70725be48db5ed664786f193118b98586ce995bd76
Contents?: true
Size: 867 Bytes
Versions: 16
Compression:
Stored size: 867 Bytes
Contents
#include <leatherman/windows/file_util.hpp> #include <leatherman/windows/system_error.hpp> #include <leatherman/windows/windows.hpp> #include <leatherman/locale/locale.hpp> #include <boost/filesystem.hpp> #include <shlobj.h> // Mark string for translation (alias for leatherman::locale::format) using leatherman::locale::_; using namespace std; using namespace boost::filesystem; namespace leatherman { namespace windows { namespace file_util { string get_programdata_dir() { PWSTR pdir; if (SUCCEEDED(SHGetKnownFolderPath(FOLDERID_ProgramData, 0, nullptr, &pdir))) { auto p = path(pdir); return p.string(); } throw unknown_folder_exception(_("error finding FOLDERID_ProgramData: {1}", leatherman::windows::system_error())); } }}} // namespace leatherman::windows::file_util
Version data entries
16 entries across 16 versions & 2 rubygems