Within Mapping data flow (trying to avoid Foreach)
Is this possible with a structure like this container/directory/File
Land/’Folder1/20210815’/a.csv
Land/’Folder1/20210816’/b.csv
Land/’Folder2/20210815’/c.csv
I want to load Folder1 and subfiles and sink them to Base container in the data lake
Base/’Folder1/20210815’/a.csv
Base/’Folder1/20210816’/b.csv
In dataflow, I will add one derived column which is loaddate (or anything I want in dataflow).
All files contain the same csv columns structure column1,column2,column3,loaddate
I do not want to specify a date basically bulk load any csv under a subfolder
Thanks



