()
| 271 | } |
| 272 | |
| 273 | async getWorkingDirectory() { |
| 274 | await this.#connectIfNotConnected(); |
| 275 | return new Promise((resolve, reject) => { |
| 276 | ftp.getWorkingDirectory(this.#conId, resolve, reject); |
| 277 | }); |
| 278 | } |
| 279 | |
| 280 | get localName() { |
| 281 | return this.#cacheFile; |
nothing calls this directly
no test coverage detected