WriteToFile Module
This module writes messages to a file.
Parameter |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
string |
Path to the output file |
“output.csv” |
|
|
string |
Type of file to write |
“CSV” |
|
|
bool |
If true, flush the file after each write |
false |
|
|
bool |
If true, include the index column |
false |
|
|
bool |
If true, overwrite the file if it exists |
true |
|
{
"filename": "output.csv",
"overwrite": true,
"flush": false,
"file_type": "CSV",
"include_index_col": false
}