(relPath: string)
| 375 | } |
| 376 | |
| 377 | async remove(relPath: string): Promise<void> { |
| 378 | await fsPromises.rm(this.abs(relPath), { recursive: true, force: true }); |
| 379 | } |
| 380 | |
| 381 | async rename(oldRelPath: string, newRelPath: string): Promise<void> { |
| 382 | const newAbs = this.abs(newRelPath); |