Recursive delete of a file or directory.
(relPath: string)
| 263 | writeFile(relPath: string, content: string): Promise<void>; |
| 264 | /** Recursive delete of a file or directory. */ |
| 265 | remove(relPath: string): Promise<void>; |
| 266 | /** Move/rename; creates the destination's parent directories. */ |
| 267 | rename(oldRelPath: string, newRelPath: string): Promise<void>; |
| 268 | /** |
no outgoing calls
no test coverage detected