| 144 | } |
| 145 | |
| 146 | Status Env::NewWritableFile(const string& fname, |
| 147 | std::unique_ptr<WritableFile>* result) { |
| 148 | FileSystem* fs; |
| 149 | TF_RETURN_IF_ERROR(GetFileSystemForFile(fname, &fs)); |
| 150 | return fs->NewWritableFile(fname, result); |
| 151 | } |
| 152 | |
| 153 | Status Env::NewAppendableFile(const string& fname, |
| 154 | std::unique_ptr<WritableFile>* result) { |
no outgoing calls