(path: string, _opts?: FileCreateOptions)
| 76 | } |
| 77 | |
| 78 | async create(path: string, _opts?: FileCreateOptions): Promise<FileWriter> { |
| 79 | return new WebDAVFileWriter(this.client, joinPath(this.basePath, path)); |
| 80 | } |
| 81 | |
| 82 | async createDir(path: string, _opts?: FileCreateOptions): Promise<void> { |
| 83 | try { |
nothing calls this directly
no test coverage detected