(params)
| 192 | }, |
| 193 | |
| 194 | async createDirectory(params) { |
| 195 | const record = asRecord(params) |
| 196 | const targetPath = stringValue(record, "path") |
| 197 | await fs.mkdir(targetPath, { recursive: boolValue(record.recursive, true) }) |
| 198 | return { ok: true, path: targetPath } |
| 199 | }, |
| 200 | |
| 201 | async removePath(params) { |
| 202 | const record = asRecord(params) |
nothing calls this directly
no test coverage detected