| 210 | } |
| 211 | |
| 212 | Status Env::GetChildren(const string& dir, std::vector<string>* result) { |
| 213 | FileSystem* fs; |
| 214 | TF_RETURN_IF_ERROR(GetFileSystemForFile(dir, &fs)); |
| 215 | return fs->GetChildren(dir, result); |
| 216 | } |
| 217 | |
| 218 | Status Env::GetMatchingPaths(const string& pattern, |
| 219 | std::vector<string>* results) { |
no outgoing calls