| 216 | } |
| 217 | |
| 218 | Status Env::GetMatchingPaths(const string& pattern, |
| 219 | std::vector<string>* results) { |
| 220 | FileSystem* fs; |
| 221 | TF_RETURN_IF_ERROR(GetFileSystemForFile(pattern, &fs)); |
| 222 | return fs->GetMatchingPaths(pattern, results); |
| 223 | } |
| 224 | |
| 225 | Status Env::DeleteFile(const string& fname) { |
| 226 | FileSystem* fs; |
no outgoing calls