| 98 | } |
| 99 | |
| 100 | bool StdExplorer::Exists(const std::string &path) { |
| 101 | const auto full_path = this->MakeFull(path); |
| 102 | |
| 103 | struct stat st; |
| 104 | return stat(full_path.c_str(), &st) == 0; |
| 105 | } |
| 106 | |
| 107 | bool StdExplorer::IsFile(const std::string &path) { |
| 108 | const auto full_path = this->MakeFull(path); |
no test coverage detected