| 158 | } |
| 159 | |
| 160 | bool move(const std::string &source, const std::string &dest) |
| 161 | { |
| 162 | std::error_code ec; |
| 163 | std::filesystem::rename(source, dest, ec); |
| 164 | return !ec; |
| 165 | } |
| 166 | |
| 167 | bool copy(const std::string &source, const std::string &dest) |
| 168 | { |
no outgoing calls
no test coverage detected