Text reader
Last updated
Last updated
[io/file/Text reader]
Reads a text file from the specified path and outputs its content. Example (success):
"/home/user1/dir1/foo.txt"@0 received on path
"Hello World"@0 sent on text
Example (failure):
"/home/user1/dir1/foo.txt"@0 received on path
"/home/user1/dir1/foo.txt"@0 sent on bounced
{
"error": "Error: ENOENT: no such file or directory, open '/home/user1/dir1/foo.txt'"
}@0 sent on error
path: string
Receives the path of the file to read content of as text. Example: "/home/user1/dir1/foo.txt" (To keep the application portable use "/" as path separator.)
text: string
Sends the text content read from the file specified by path
.
Example:
"Hello World"
bounced: string
Sends the path if the operation has failed. Example: "/home/user1/dir1/foo.txt"
error: {"error": string}
Sends error information if the operation has failed. Example: { "error": "Error: ENOENT: no such file or directory, open '/home/user1/dir1/foo.txt'" }