Reads a dataset of files and parses each CSV file into rows.
Transform categories: File
Declared arguments
Dataset - Dataset of files to process. Files
Schema - Schema definition used when parsing the CSV files. Type<Struct>
optionalAllow multiline - Specifies whether the parsing should allow for rows split across multiple lines. The default is set to false. Literal<Boolean>
optionalColumn delimiter - Provides the delimiter used in the CSV file. The default delimiter is the comma. Literal<String>
optionalCustom quote character - Sets a single character for escaping quoted values where the separator can be part of the value. For reading, if you would like to turn off quotations, set the value to an empty string. The default value is the quote ("). Literal<String>
optionalInclude last modified timestamp - Specifies whether the output dataset should contain the file's last modified timestamp. The default value is false. Literal<Boolean>
optionalIncludes header - Specifies whether the CSV file contains the header. The default value is false. Literal<Boolean>