Interface FtpNodeParameters

Source
interface FtpNodeParameters {
    binaryData?: boolean;
    binaryPropertyName?: string;
    fileContent?: string;
    newPath?: string;
    oldPath?: string;
    operation?:
        | "list"
        | "delete"
        | "upload"
        | "download"
        | "rename";
    options?: | { folder?: boolean; recursive?: boolean }
    | {
        chunkSize?: number;
        enableConcurrentReads?: boolean;
        maxConcurrentReads?: number;
    }
    | { createDirectories?: boolean };
    path?: string;
    protocol?: "ftp" | "sftp";
    recursive?: boolean;
}

Properties§

Source§

readonly binaryData?: boolean

The text content of the file to upload Default: true

Source§

readonly binaryPropertyName?: string

Default: "data"

Source§

readonly fileContent?: string

The text content of the file to upload

Source§

readonly newPath?: string

Source§

readonly oldPath?: string

Source§

readonly operation?: "list" | "delete" | "upload" | "download" | "rename"

Default: "download"

Source§

readonly options?:
    | { folder?: boolean; recursive?: boolean }
    | {
        chunkSize?: number;
        enableConcurrentReads?: boolean;
        maxConcurrentReads?: number;
    }
    | { createDirectories?: boolean }

Default: {}

Source§

readonly path?: string

The file path of the file to delete. Has to contain the full path.

Source§

readonly protocol?: "ftp" | "sftp"

File transfer protocol Default: "ftp"

Source§

readonly recursive?: boolean

Whether to return object representing all directories / objects recursively found within SFTP server