| 241 | } |
| 242 | |
| 243 | Status Env::DeleteDir(const string& dirname) { |
| 244 | FileSystem* fs; |
| 245 | TF_RETURN_IF_ERROR(GetFileSystemForFile(dirname, &fs)); |
| 246 | return fs->DeleteDir(dirname); |
| 247 | } |
| 248 | |
| 249 | Status Env::Stat(const string& fname, FileStatistics* stat) { |
| 250 | FileSystem* fs; |
no outgoing calls
no test coverage detected