FtpResponse
Defined in: src/providers/classic/ftp/FtpResponseParser.ts:22
Complete parsed FTP response.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
code | number | Numeric three-digit FTP reply code. | src/providers/classic/ftp/FtpResponseParser.ts:24 |
completion | boolean | Whether the response is a 2xx completion reply. | src/providers/classic/ftp/FtpResponseParser.ts:36 |
intermediate | boolean | Whether the response is a 3xx intermediate reply. | src/providers/classic/ftp/FtpResponseParser.ts:38 |
lines | string[] | Individual message lines without the reply-code prefix. | src/providers/classic/ftp/FtpResponseParser.ts:28 |
message | string | Response message with multi-line content joined by newlines. | src/providers/classic/ftp/FtpResponseParser.ts:26 |
permanentFailure | boolean | Whether the response is a 5xx permanent failure reply. | src/providers/classic/ftp/FtpResponseParser.ts:42 |
preliminary | boolean | Whether the response is a 1xx preliminary reply. | src/providers/classic/ftp/FtpResponseParser.ts:34 |
raw | string | Raw response lines joined by newlines. | src/providers/classic/ftp/FtpResponseParser.ts:30 |
status | FtpResponseStatus | Classified response status family. | src/providers/classic/ftp/FtpResponseParser.ts:32 |
transientFailure | boolean | Whether the response is a 4xx transient failure reply. | src/providers/classic/ftp/FtpResponseParser.ts:40 |