| 152 | } |
| 153 | |
| 154 | void StdExplorer::DeleteDirectory(const std::string &path) { |
| 155 | const auto full_path = this->MakeFull(path); |
| 156 | fsdevDeleteDirectoryRecursively(full_path.c_str()); |
| 157 | this->DoCommit(); |
| 158 | } |
| 159 | |
| 160 | void StdExplorer::StartFileImpl(const std::string &path, const FileMode mode) { |
| 161 | auto file_mode = "rw"; |
no test coverage detected