Feedback

  • Contents
 

File Write

This File I/O tool writes a string to a file.

Inputs

File Handle

The handle for a file created during a FileOpenWrite step.

String to write to file

The string to be written to the file.

Delimiter to append to string

The code or codes to append to the end of the text being written. The default is "\n" which is a common code for line-break.
Possible values are:

" "

space

""

empty string

"\"

quotation mark

"\n"

line break

"\t"

tab

Exit Paths

Success

This step takes the Success exit path if the operation is successful.

Failure

This step takes the Failure exit path if the file handle is invalid.