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