writeBinaryFile.json•1.46 kB
{
"nodeType": "n8n-nodes-base.writeBinaryFile",
"displayName": "Write Binary File",
"description": "Writes a binary file to disk",
"version": 1,
"properties": [
{
"name": "fileName",
"displayName": "File Name",
"type": "string",
"default": "",
"description": "Path to which the file should be written",
"placeholder": "/data/example.jpg",
"required": true
},
{
"name": "dataPropertyName",
"displayName": "Property Name",
"type": "string",
"default": "data",
"description": "Name of the binary property which contains the data for the file to be written",
"required": true
},
{
"name": "options",
"displayName": "Options",
"type": "collection",
"default": {},
"description": "Whether to append to an existing file",
"placeholder": "Add option",
"options": [
{
"name": "append",
"displayName": "Append",
"type": "boolean",
"default": false,
"description": "Whether to append to an existing file"
}
]
}
],
"credentialsConfig": [],
"io": {
"inputs": [
"Main"
],
"outputs": [
"Main"
],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [
"Main"
],
"produces": [
"Main"
]
}
}