| 183 | |
| 184 | |
| 185 | bool remove(const std::string& path) { |
| 186 | try { |
| 187 | return fs::remove(fs::u8path(path)); |
| 188 | } |
| 189 | catch (fs::filesystem_error& e) { |
| 190 | return false; |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | |
| 195 | int removeRecursively(const std::string& pathStr) { |
no outgoing calls
no test coverage detected