| 145 | } |
| 146 | |
| 147 | bool CUtility::Copy(const std::wstring& srcFile, const std::wstring& dstFile) |
| 148 | { |
| 149 | bool r = std::filesystem::copy_file(srcFile, dstFile); |
| 150 | return r; |
| 151 | } |
| 152 | |
| 153 | auto CUtility::GetFileName(const std::wstring& fullPath, bool withExtension) -> std::wstring |
| 154 | { |
nothing calls this directly
no outgoing calls
no test coverage detected