doc.read-file-action.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of module-file Show documentation
Show all versions of module-file Show documentation
Provides file handling for igor.
The newest version!
# 'Read file' Action
## Description
This action reads a file from a file-connector and adds its contents to the processed data item.
The file's contents will be available in the data item under the key 'fileContents'.
A data item processed by this action could look like this:
``` json
{
"data": {
...
},
"meta": {
...
}
"fileContents": "THIS IS THE CONTENT READ FROM THE FILE!"
}
```
## Parameters
The action can be configured by the following parameters:
Parameter | Description
---|:---|
Source | A connector providing access to the file to read.
Directory | The directory containing the file to delete. Either a fixed value or a mustache expression selecting a property from the data item. If a mustache expression is used, the property's value will be used as directory name.
Filename | The name of the file to delete. Either a fixed value or a mustache expression selecting a property from the data item. If a mustache expression is used, the property's value will be used as filename.
Num threads | The number of threads this action uses to process data items.
© 2015 - 2024 Weber Informatics LLC | Privacy Policy