| 47 | } |
| 48 | |
| 49 | static auto GetLocalDataFolder() |
| 50 | { |
| 51 | static auto ret = winrt::Windows::Storage::ApplicationData::Current().LocalCacheFolder().Path() + L"\\Local"; |
| 52 | std::filesystem::remove_all((ret + L"\\Microsoft").data()); |
| 53 | return ret; |
| 54 | } |
| 55 | |
| 56 | std::wstring Command::RecordFile() |
| 57 | { |
no test coverage detected