| 322 | } |
| 323 | |
| 324 | bool removeFile(fs::path const &filePath) |
| 325 | { |
| 326 | if (!fileExists(filePath)) { |
| 327 | return false; |
| 328 | } |
| 329 | |
| 330 | return fs::remove(filePath); |
| 331 | } |
| 332 | |
| 333 | void linkFile(fs::path const &filePath, fs::path const &linkPath) |
| 334 | { |
no test coverage detected