Atomic write; creates parent directories.
(relPath: string, content: string)
| 261 | readFilePrefix(relPath: string, maxBytes: number): Promise<string>; |
| 262 | /** Atomic write; creates parent directories. */ |
| 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. */ |
no outgoing calls