| 119 | } |
| 120 | |
| 121 | void StdExplorer::CreateFile(const std::string &path) { |
| 122 | const auto full_path = this->MakeFull(path); |
| 123 | |
| 124 | fsdevCreateFile(full_path.c_str(), 0, 0); |
| 125 | this->DoCommit(); |
| 126 | } |
| 127 | |
| 128 | void StdExplorer::CreateDirectory(const std::string &path) { |
| 129 | const auto full_path = this->MakeFull(path); |
no test coverage detected