(path = '')
| 354 | } |
| 355 | |
| 356 | function browseServerDirectories(path = ''): Promise<DirectoryBrowseResult> { |
| 357 | const query = path ? `?path=${encodeURIComponent(path)}` : '' |
| 358 | return jsonRequest<DirectoryBrowseResult>(`/fs/browse${query}`).catch((err) => |
| 359 | wrapRouteUpgradeError('/fs/browse', err) |
| 360 | ) |
| 361 | } |
| 362 | |
| 363 | // -------------------------------------------------------------------- |
| 364 | // Note listing / reading / writing |
nothing calls this directly
no test coverage detected