| 145 | } |
| 146 | |
| 147 | void StdExplorer::DeleteFile(const std::string &path) { |
| 148 | const auto full_path = this->MakeFull(path); |
| 149 | |
| 150 | remove(full_path.c_str()); |
| 151 | this->DoCommit(); |
| 152 | } |
| 153 | |
| 154 | void StdExplorer::DeleteDirectory(const std::string &path) { |
| 155 | const auto full_path = this->MakeFull(path); |
no test coverage detected