I want to exclude the .mp4 file while copying it from Azure Storage (blob) to Sftp. Following is my source settings
Asked
Active
Viewed 1,005 times
1 Answers
1
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

Nandan
- 3,939
- 2
- 8
- 21
-
can't we directly do using wildcard path or prefix by using expressions and functions? – SarangRN Sep 20 '21 at 15:35
-
I am looking for the most optimized solution. Do you know if we can use multiple patterns/prefixes in a wildcard file name? – SarangRN Sep 20 '21 at 15:42