edgeport - v1.0.3
    Preparing search index...

    Interface FtpConnectOptions

    Options for connect, getFile, and putFile.

    interface FtpConnectOptions {
        hostname: string;
        password?: string;
        port?: number;
        timeoutMs?: number;
        username?: string;
    }
    Index
    hostname: string

    Remote FTP host.

    password?: string

    Login password; defaults to the empty string.

    port?: number

    Remote control port; defaults to 21.

    timeoutMs?: number

    Per-operation read deadline in milliseconds.

    username?: string

    Login user; defaults to 'anonymous'.