(path: string, opts?: FileCreateOptions)
| 41 | openDir(path: string): Promise<FileSystem>; |
| 42 | // 创建文件 |
| 43 | create(path: string, opts?: FileCreateOptions): Promise<FileWriter>; |
| 44 | // 创建目录 |
| 45 | createDir(dir: string, opts?: FileCreateOptions): Promise<void>; |
| 46 | // 删除文件 |
no outgoing calls
no test coverage detected