| 223 | } |
| 224 | |
| 225 | Status Env::DeleteFile(const string& fname) { |
| 226 | FileSystem* fs; |
| 227 | TF_RETURN_IF_ERROR(GetFileSystemForFile(fname, &fs)); |
| 228 | return fs->DeleteFile(fname); |
| 229 | } |
| 230 | |
| 231 | Status Env::RecursivelyCreateDir(const string& dirname) { |
| 232 | FileSystem* fs; |
no outgoing calls