| 6 | namespace Env |
| 7 | { |
| 8 | static auto getFolderPathImpl(REFKNOWNFOLDERID id) |
| 9 | { |
| 10 | wchar_t* ptr; |
| 11 | SHGetKnownFolderPath(id, 0, NULL, &ptr); |
| 12 | std::wstring result{ ptr }; |
| 13 | CoTaskMemFree(ptr); |
| 14 | return result; |
| 15 | } |
| 16 | |
| 17 | std::wstring const& GetFolderPath(SpecialFolder folder) |
| 18 | { |