Converting Multiple Fixed Width Files to CSV at a time in ADF

wko9yo5t  于 2023-02-21  发布在  其他
关注(0)|答案(1)|浏览(95)

I have three (.txt) files in a container. I need to convert all these three files at a time to CSV.

I have converted Fixed Width to CSV only one file at a time.

But my requirement is to convert multiple files at a time which are available inside a container. Could anyone please helps me with a solution.Requirement is, daily we get multiple fixed width text files and we need to convert them to CSV and load them in Tables

j5fpnvbx

j5fpnvbx1#

In a pipeline, use a metadata activity to get a list of files in the folder. Pass that list to a foreach loop. Inside the loop, run the dataflow you show above, and pass to it the parameters of file source and destination.

相关问题