how to exclude files with certain prefix in azure data factory pipeline while copying the data

1.2k Views Asked by At

I want to exclude the .mp4 file while copying it from Azure Storage (blob) to Sftp. Following is my source settings

enter image description here

1

There are 1 best solutions below

2
On

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