| 247 | } |
| 248 | |
| 249 | Status Env::Stat(const string& fname, FileStatistics* stat) { |
| 250 | FileSystem* fs; |
| 251 | TF_RETURN_IF_ERROR(GetFileSystemForFile(fname, &fs)); |
| 252 | return fs->Stat(fname, stat); |
| 253 | } |
| 254 | |
| 255 | Status Env::IsDirectory(const string& fname) { |
| 256 | FileSystem* fs; |
no outgoing calls