edgeport - v1.0.3
    Preparing search index...

    Interface FtpPutOptions

    Per-transfer options for FtpSession.put.

    interface FtpPutOptions {
        append?: boolean;
        offset?: number;
        type?: FtpTransferType;
    }
    Index
    append?: boolean

    Append to the destination via APPE instead of STOR. When set, offset is ignored. Use this to resume an interrupted upload by sending only the remaining bytes.

    offset?: number

    Byte offset to resume the upload from, issued as REST <offset> before STOR, overwriting the destination from that offset onward. Ignored when append is set.

    Transfer representation type; defaults to 'binary'.