| 235 | } |
| 236 | |
| 237 | Status Env::CreateDir(const string& dirname) { |
| 238 | FileSystem* fs; |
| 239 | TF_RETURN_IF_ERROR(GetFileSystemForFile(dirname, &fs)); |
| 240 | return fs->CreateDir(dirname); |
| 241 | } |
| 242 | |
| 243 | Status Env::DeleteDir(const string& dirname) { |
| 244 | FileSystem* fs; |
no outgoing calls