(file: FileInfo)
| 68 | } |
| 69 | |
| 70 | async open(file: FileInfo): Promise<FileReader> { |
| 71 | return new WebDAVFileReader(this.client, joinPath(file.path, file.name)); |
| 72 | } |
| 73 | |
| 74 | async openDir(path: string): Promise<FileSystem> { |
| 75 | return WebDAVFileSystem.fromSameClient(this, joinPath(this.basePath, path)); |
nothing calls this directly
no test coverage detected