Reputation: 140
I want to exclude the .mp4 file while copying it from Azure Storage (blob) to Sftp. Following is my source settings
Upvotes: 0
Views: 1424
Reputation: 4945
You can use GetMetadata activity to get the list of all files in folder and then filter out that array for .mp4 file. Use this filtered out output as input for for each activity and iterate over each file
Upvotes: 1