Interface FtpNodeParameters
Sourceinterface 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;
}
The text content of the file to upload Default: true