Interface: IFTPClientConfig
ftp-client/src.IFTPClientConfig
Extends
AccessOptions
Properties
connectOnStartup
connectOnStartup?:
boolean
Source
libs/ftp-client/src/lib/config/ftp-client-config.interface.ts:5
host
readonly
host?:string
Host the client should connect to. Optional, default is "localhost".
Inherited from
AccessOptions.host
Source
node_modules/basic-ftp/dist/Client.d.ts:11
password
readonly
password?:string
Password to use for login. Optional, default is "guest".
Inherited from
AccessOptions.password
Source
node_modules/basic-ftp/dist/Client.d.ts:17
port
readonly
port?:number
Port the client should connect to. Optional, default is 21.
Inherited from
AccessOptions.port
Source
node_modules/basic-ftp/dist/Client.d.ts:13
secure
readonly
secure?:boolean
|"implicit"
Use FTPS over TLS. Optional, default is false. True is preferred explicit TLS, "implicit" supports legacy, non-standardized implicit TLS.