Jul 22 2024 07:27 AM
Hi,
I need your expertise on how I can process the files that are in selected folders only.
I am using a notebook to know the max(key) that was loaded in my table.
What I want to do is to process the files that are in the folder that is greater than this max(key).
Ex.
max(key) = 12343
Jul 22 2024 01:22 PM
Hi @zll_0091
I did the following --
1.) Get Metadata activity (Argument = Child Items) to retrieve the folder names.
2.) For Each (Items = @activity('Get Metadata1').output.childItems) to loop through the folder names.
3.) In the For Each, add an If Condition with the following expression:
Jul 22 2024 07:20 PM
Thank you so much for your reply. I was stuck in this scenario and been trying the same approach but always receiving an error on the if condition expression. I used the expression that you've provided and it run successfully.
I appreciate your help 🙂