* @brief Return User's Application Data Folder. * This function returns full path to User's Application Data -folder. * @return Full path to Application Data -folder. */
| 142 | * @return Full path to Application Data -folder. |
| 143 | */ |
| 144 | String GetAppDataPath() |
| 145 | { |
| 146 | tchar_t path[MAX_PATH]; |
| 147 | path[0] = _T('\0'); |
| 148 | SHGetFolderPath(nullptr, CSIDL_APPDATA, nullptr, 0, path); |
| 149 | return path; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * @brief Return unique string for the instance. |
no outgoing calls
no test coverage detected