| 229 | } |
| 230 | |
| 231 | Status Env::RecursivelyCreateDir(const string& dirname) { |
| 232 | FileSystem* fs; |
| 233 | TF_RETURN_IF_ERROR(GetFileSystemForFile(dirname, &fs)); |
| 234 | return fs->RecursivelyCreateDir(dirname); |
| 235 | } |
| 236 | |
| 237 | Status Env::CreateDir(const string& dirname) { |
| 238 | FileSystem* fs; |
no outgoing calls