(target: string)
| 235 | } |
| 236 | |
| 237 | mkdir(target: string) { |
| 238 | if (!this.checkPath(target)) throw new Error(ERROR_MSG_01); |
| 239 | const targetPath = this.toAbsolutePath(target); |
| 240 | return fs.mkdirSync(targetPath, { recursive: true }); |
| 241 | } |
| 242 | |
| 243 | async delete(target: string): Promise<boolean> { |
| 244 | if (!this.check(target)) throw new Error(ERROR_MSG_01); |
no test coverage detected