| 126 | } |
| 127 | |
| 128 | void StdExplorer::CreateDirectory(const std::string &path) { |
| 129 | const auto full_path = this->MakeFull(path); |
| 130 | |
| 131 | mkdir(full_path.c_str(), 777); |
| 132 | this->DoCommit(); |
| 133 | } |
| 134 | |
| 135 | void StdExplorer::RenameFile(const std::string &path, const std::string &new_name) { |
| 136 | const auto full_path = this->MakeFull(path); |
no test coverage detected