| Class | Description |
|---|---|
| CSVReader |
This actor reads a file or URL, one line at a time, and outputs each line
except the first as a record.
|
| CSVWriter |
This actor reads record-valued input tokens and writes them,
one line at a time, to a specified file, as comma-separated list
(or separated by some other delimiter given by the separator
parameter).
|
| DirectoryListing |
Given a URL or directory name, this actor produces an array of file names
in that directory that match an (optional) pattern.
|
| ExpressionReader | Deprecated
Use LineReader and ExpressionToToken.
|
| ExpressionWriter | Deprecated
Use TokenToExpression followed by LineWriter.
|
| FileReader |
This actor reads a file or URL and outputs the entire file
as a single string.
|
| LineReader |
This actor reads a file or URL, one line at a time, and outputs each line
as a string.
|
| LineWriter |
This actor reads string-valued input tokens and writes them,
one line at a time, to a specified file.
|
| TokenReader | Deprecated
Use LineReader followed by ExpressionToToken.
|