(dir: string, opts?: FileCreateOptions)
| 124 | } |
| 125 | |
| 126 | createDir(dir: string, opts?: FileCreateOptions): Promise<void> { |
| 127 | return this.limiter.execute(() => this.fs.createDir(dir, opts), "createDir"); |
| 128 | } |
| 129 | |
| 130 | delete(path: string): Promise<void> { |
| 131 | return this.limiter.execute(() => this.fs.delete(path), "delete"); |