How to copy the data from append variable activity to a csv file using Azure Data Factory
I have array of file names stored in append variable activity. I want to store all these files names inside a .CSV file in the data lake location.
For more info refer this how to compare the file names that are inside a folder (Datalake) using ADF
New variable v2 of string type is taken and value is given as @join(variables('V1'),decodeUriComponent('%0A'))
This step is done to join all the strings of the array using \n (line feed)
.
Then Copy activity is taken and dummy source dataset with one row is taken.
In Source, +New is selected and value is given as dynamic content @varaiables('v2')
.
col1
, all other columns are deleted.Edited
@join(variables('v2'),decodeUriComponent('%0A'))