()
| 260 | } |
| 261 | |
| 262 | async stat() { |
| 263 | if (this.#stat) return this.#stat; |
| 264 | await this.#connectIfNotConnected(); |
| 265 | await this.#getStat(); |
| 266 | return this.#stat; |
| 267 | } |
| 268 | |
| 269 | async copyTo() { |
| 270 | throw new Error("Not supported by FTP."); |
no test coverage detected