I need to load the content of all files in a directory. These files are non-delimited raw text files. I need to store the content of each file in one single cell of a table.
Additionally I need to store the source file name for each file in a second column in the same row.
The output would look similar to this:
----------------------------------------------------------------
|This is the content of \n the first file | /path/to/file1.txt |
----------------------------------------------------------------
|This is the \n content of the second one | /path/to/file2.txt |
----------------------------------------------------------------
|...... |..... |
Is there a way to accomplish this in CloverETL? Can I use the UniversalDataReader?
Thanks a lot!
Greetings
Al