| 8 | #include "Registry.h" |
| 9 | |
| 10 | static auto GetLocalDataFolder() |
| 11 | { |
| 12 | static std::wstring ret = [] |
| 13 | { |
| 14 | wchar_t* ptr; |
| 15 | SHGetKnownFolderPath(FOLDERID_LocalAppData, 0, NULL, &ptr); |
| 16 | std::wstring result{ ptr }; |
| 17 | CoTaskMemFree(ptr); |
| 18 | auto ret = result + LR"(\packages\FastCopy_tp1tpcm9wdwpy\LocalCache\Local)"; |
| 19 | |
| 20 | return ret; |
| 21 | }(); |
| 22 | return ret; |
| 23 | } |
| 24 | |
| 25 | static auto GetTimeString() |
| 26 | { |
no outgoing calls
no test coverage detected