- Contents
Interaction Designer Help
File Read
This File I/O tool reads a string from a file.
Inputs
File Handle
The handle for a file created during a FileOpenRead step.
String Delimiters
The code or codes that indicate the end of a string, any one of which will be interpreted as the end of the string. 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 |
Outputs
String Read From File
A string variable whose value is set to the data read from the file.
Delimiter which ended read operation
This variable contains the value of the delimiter that ended the read operation.
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.