How to write files inside a folder
Learn the write files using the File Writer connector on the Digibee Integration Platform.
Let's say you have a file named "file.txt"
inside "folder"
, available in your pipeline.
To write this file inside a folder, you may use a File Writer that indicates the path "folder/file.txt"
. That way, you can access the file "file.txt"
.
Check how to do that:

Create a pipeline and add a File Writer.
Open the configuration form of the connector.
Define the File Name parameter as
"folder/file.txt"
.Define the Data parameter as
{{ message.data }}
. Mind we're using the Double Braces expression:{{ message.data }}
to access the result of the last component. In this case, we accessdata
with the content of the file to be written.Click Confirm to save the connector settings.
Connect the trigger to the File Writer.
Run a test in the pipeline (CTRL + ENTER).
The result will be shown:
{
"fileName": "folder/file.txt",
"success": true
}
fileName: shows the complete path of the written file.
success: when the result is "true", it indicates that the execution was successful.
Last updated
Was this helpful?