| 266 | } |
| 267 | |
| 268 | Status Env::GetFileSize(const string& fname, uint64* file_size) { |
| 269 | FileSystem* fs; |
| 270 | TF_RETURN_IF_ERROR(GetFileSystemForFile(fname, &fs)); |
| 271 | return fs->GetFileSize(fname, file_size); |
| 272 | } |
| 273 | |
| 274 | Status Env::RenameFile(const string& src, const string& target) { |
| 275 | FileSystem* src_fs; |
no outgoing calls