| 170 | } |
| 171 | |
| 172 | std::unique_ptr<WriteFile> openFileForWrite( |
| 173 | std::string_view path, |
| 174 | const FileOptions& options) override { |
| 175 | return std::make_unique<LocalWriteFile>( |
| 176 | extractPath(path), |
| 177 | options.shouldCreateParentDirectories, |
| 178 | options.shouldThrowOnFileAlreadyExists); |
| 179 | } |
| 180 | #ifdef IO_URING_SUPPORTED |
| 181 | std::unique_ptr<ReadFile> openAsyncFileForRead( |
| 182 | std::string_view path, |
no outgoing calls