| 16 | } |
| 17 | |
| 18 | void FileUtilsSystemSpecific::copyFile(const std::string& source, |
| 19 | const std::string& destination) |
| 20 | { |
| 21 | auto cmd = getCommandLineForCopy(source, destination, SystemUtils::isWindowsOs()); |
| 22 | SystemUtils::runSystemCommandOrThrow(cmd); |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected