(path: string)
| 608 | } |
| 609 | |
| 610 | async *iterdir(path: string): AsyncGenerator<string> { |
| 611 | const resolved = this._resolvePath(path); |
| 612 | const entries = await sftpReaddir(this._sftp, resolved); |
| 613 | for (const entry of entries) { |
| 614 | if (entry.filename === '.' || entry.filename === '..') continue; |
| 615 | yield join(resolved, entry.filename); |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | async *glob( |
| 620 | path: string, |
nothing calls this directly
no test coverage detected