| 83 | } |
| 84 | |
| 85 | std::unique_ptr<WriteBuffer> BackupWriterDisk::writeFile(const String & file_name) |
| 86 | { |
| 87 | auto file_path = root_path / file_name; |
| 88 | disk->createDirectories(file_path.parent_path()); |
| 89 | return disk->writeFile(file_path, write_buffer_size, WriteMode::Rewrite, write_settings); |
| 90 | } |
| 91 | |
| 92 | void BackupWriterDisk::removeFile(const String & file_name) |
| 93 | { |
nothing calls this directly
no test coverage detected