mirror of
https://github.com/docmost/docmost.git
synced 2025-11-24 08:21:14 +10:00
copy function
This commit is contained in:
@ -14,6 +14,11 @@ export class StorageService {
|
|||||||
this.logger.debug(`File uploaded successfully. Path: ${filePath}`);
|
this.logger.debug(`File uploaded successfully. Path: ${filePath}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async copy(fromFilePath: string, toFilePath: string) {
|
||||||
|
await this.storageDriver.copy(fromFilePath, toFilePath);
|
||||||
|
this.logger.debug(`File copied successfully. Path: ${toFilePath}`);
|
||||||
|
}
|
||||||
|
|
||||||
async read(filePath: string): Promise<Buffer> {
|
async read(filePath: string): Promise<Buffer> {
|
||||||
return this.storageDriver.read(filePath);
|
return this.storageDriver.read(filePath);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user