| 34 | } |
| 35 | |
| 36 | winrt::hstring Command::GetDestination() |
| 37 | { |
| 38 | auto& args = GetCommandArgs(); |
| 39 | constexpr static std::wstring_view protocol = L"fastcopy://"; |
| 40 | |
| 41 | return args.size() == 1 ? winrt::hstring{ |
| 42 | #ifdef _DEBUG |
| 43 | LR"(E:\test\Intel Unison)" |
| 44 | #endif |
| 45 | } : winrt::hstring{ args[1].substr(protocol.size(), args[1].find(L"|") - protocol.size()) }; |
| 46 | |
| 47 | } |
| 48 | |
| 49 | static auto GetLocalDataFolder() |
| 50 | { |