(src: string, dest: string)
| 140 | } |
| 141 | |
| 142 | async move(src: string, dest: string): Promise<void> { |
| 143 | await this.bucket.move(this.fullPath(src), this.fullPath(dest)); |
| 144 | } |
| 145 | |
| 146 | async copy(src: string, dest: string): Promise<void> { |
| 147 | await this.bucket.copy(this.fullPath(src), this.fullPath(dest)); |