I have multiple format files in a blob storage ,how to check format of only csv files and move that into another folder in azure data factory
0
votes
1 Answers
1
votes
Use the GetMetadata activity to list the files. Be sure to add the "ChildItems" property:
Next use a Filter activity to only process the items that match your criteria:
NOTE: this example only processes a) files [ignores subfolders] that b) name starts with "scoring-" and c) ends in ".csv".
Now you can perform the move inside the a ForEach over the filtered list: