| 84 | return m_finishedFiles; |
| 85 | } |
| 86 | winrt::hstring RobocopyViewModel::Source() |
| 87 | { |
| 88 | if (m_countItemTask.is_done() && m_recordFile && m_iter && *m_iter >= m_recordFileBegin && *m_iter < m_recordFileEnd) |
| 89 | return std::filesystem::path{ **m_iter }.filename().wstring().data(); |
| 90 | return L"---"; |
| 91 | } |
| 92 | winrt::hstring RobocopyViewModel::Destination() |
| 93 | { |
| 94 | std::filesystem::path path{ std::wstring_view{m_destination }}; |