Skip to main content

File Writer

General

The File module will write the output of a pipeline to a file.

Module Options

Encoding

Type: enum
Required: True
Default Value: utf-8
Options: ascii, utf-8, utf16le, ucs2, ucs-2, base64, latin1, binary, hex
Description: Specify how the file is encoded.

File Path

Type: file
Required: True
Description: The server-relative path to the file. This should be provided as an absolute path.

Good Example: C:\Users\Public\Documents\test.txt
Bad Example: ./test.txt

Write Mode

Type: enum
Required: True
Default Value: overwrite
Options: overwrite, append
Description: Whether to overwrite an existing file or append to it.