(path: string, _opts?: FileCreateOptions)
| 38 | } |
| 39 | |
| 40 | create(path: string, _opts?: FileCreateOptions): Promise<FileWriter> { |
| 41 | return Promise.resolve(new DropboxFileWriter(this, joinPath(this.path, path))); |
| 42 | } |
| 43 | |
| 44 | async createDir(dir: string, _opts?: FileCreateOptions): Promise<void> { |
| 45 | if (!dir) { |
nothing calls this directly
no test coverage detected