| 254 | } |
| 255 | |
| 256 | void DiskObjectStorage::createFile(const String & path) |
| 257 | { |
| 258 | auto transaction = createObjectStorageTransaction(); |
| 259 | transaction->createFile(path); |
| 260 | transaction->commit(); |
| 261 | } |
| 262 | |
| 263 | size_t DiskObjectStorage::getFileSize(const String & path) const |
| 264 | { |