interface FtpNodeParameters {
binaryData?: boolean;
binaryPropertyName?: string;
fileContent?: string;
newPath?: string;
oldPath?: string;
operation?:
| "list"
| "delete"
| "upload"
| "download"
| "rename";
options?: | {
folder?: boolean;
recursive?: boolean;
timeout?: number;
}
| {
chunkSize?: number;
enableConcurrentReads?: boolean;
maxConcurrentReads?: number;
timeout?: number;
}
| { createDirectories?: boolean; timeout?: number }
| { timeout?: number };
path?: string;
protocol?: "ftp" | "sftp";
recursive?: boolean;
}
Properties§
§
§
§
§
§
§
§
§
readonly binary Data?: boolean
readonly binary Property Name?: string
Default: "data"
readonly file Content?: string
The text content of the file to upload
readonly new Path?: string
§readonly old Path?: string
§readonly operation?: "list" | "delete" | "upload" | "download" | "rename"
Default: "download"
readonly options?:
| {
folder?: boolean;
recursive?: boolean;
timeout?: number;
}
| {
chunkSize?: number;
enableConcurrentReads?: boolean;
maxConcurrentReads?: number;
timeout?: number;
}
| { createDirectories?: boolean; timeout?: number }
| { timeout?: number }
Default: {}
readonly path?: string
The file path of the file to delete. Has to contain the full path.
readonly protocol?: "ftp" | "sftp"
File transfer protocol Default: "ftp"
readonly recursive?: boolean
Whether to return object representing all directories / objects recursively found within SFTP server
The text content of the file to upload Default: true