Gets metadata about a file or directory. Throw if it does not exist.
(path: string)
| 75 | |
| 76 | /** Gets metadata about a file or directory. Throw if it does not exist. */ |
| 77 | stat(path: string): Promise<SessionFsFileInfo>; |
| 78 | |
| 79 | /** Creates a directory. If recursive is true, creates parents as needed. */ |
| 80 | mkdir(path: string, recursive: boolean, mode?: number): Promise<void>; |
no outgoing calls
no test coverage detected