| 253 | } |
| 254 | |
| 255 | Status Env::IsDirectory(const string& fname) { |
| 256 | FileSystem* fs; |
| 257 | TF_RETURN_IF_ERROR(GetFileSystemForFile(fname, &fs)); |
| 258 | return fs->IsDirectory(fname); |
| 259 | } |
| 260 | |
| 261 | Status Env::DeleteRecursively(const string& dirname, int64* undeleted_files, |
| 262 | int64* undeleted_dirs) { |
no outgoing calls