| 1940 | } |
| 1941 | |
| 1942 | String Utility::GetIcingaDataPath() |
| 1943 | { |
| 1944 | char path[MAX_PATH]; |
| 1945 | if (!SUCCEEDED(SHGetFolderPath(nullptr, CSIDL_COMMON_APPDATA, nullptr, 0, path))) |
| 1946 | return ""; |
| 1947 | return String(path) + "\\icinga2"; |
| 1948 | } |
| 1949 | |
| 1950 | #endif /* _WIN32 */ |
| 1951 |