Interface ReadWriteFileNodeParameters

Source
interface ReadWriteFileNodeParameters {
    dataPropertyName?: string;
    fileName?: string;
    fileSelector?: string;
    operation?: "read" | "write";
    options?:
        | {
            dataPropertyName?: string;
            fileExtension?: string;
            fileName?: string;
            mimeType?: string;
        }
        | { append?: boolean };
}

Properties§

Source§

readonly dataPropertyName?: string

Default: "data"

Source§

readonly fileName?: string

Path and name of the file that should be written. Also include the file extension.

Source§

readonly fileSelector?: string

Specify a file's path or path pattern to read multiple files. Always use forward-slashes for path separator even on Windows.

Source§

readonly operation?: "read" | "write"

Default: "read"

Source§

readonly options?:
    | {
        dataPropertyName?: string;
        fileExtension?: string;
        fileName?: string;
        mimeType?: string;
    }
    | { append?: boolean }

Default: {}