| 198 | } |
| 199 | |
| 200 | Status IGFS::GetMatchingPaths(const string &pattern, |
| 201 | std::vector<string> *results) { |
| 202 | return internal::GetMatchingPaths(this, Env::Default(), pattern, results); |
| 203 | } |
| 204 | |
| 205 | Status IGFS::DeleteFile(const string &file_name) { |
| 206 | std::unique_ptr<IGFSClient> client = CreateClient(); |
nothing calls this directly
no test coverage detected