Open many text files in separate cells.

Parameters:
See dedicated page for more information.
readOneFilePerCell is a scripted action. Embedded code is accessible and customizable through this tab.
See dedicated page for more information.
The readOneFilePerCell action reads the full content of each file specified in a column of the input table and places that content into a new column—one file per row/cell. This is useful when handling large-scale text files that need to be processed individually.
| filePath |
|---|
/data/logs/file1.txt |
/data/logs/file2.txt |
/data/logs/file3.txt |
| filePath | file content |
|---|---|
/data/logs/file1.txt |
Content of file1.txt |
/data/logs/file2.txt |
Content of file2.txt |
/data/logs/file3.txt |
Content of file3.txt |
maxLen to limit how much text is loaded if files are very large.utf-8 or utf-16) to avoid content issues.allowMissing if you're not sure all listed files exist.Notes
- If
allowMissingis set to false, any missing file will cause the pipeline to fail.- Incorrect encoding can result in unreadable or empty file content.
- Useful for ETL processes where document-level granularity is required.
