I am using GetMetadata Activity in my pipeline to retrieve all the files which is present in Azure Blob storage. I am using the field = Child Items. Based on the file names I am getting in Child Items, I want to check in If condition activity whether that file is of a particular name, if yes, then do the copy activity, if not don't do any thing. How can I do that?
Below is the output from GetMetadata activity
{
"exists": true,
"childItems": [
{
"name": "User.csv",
"type": "File"
},
{
"name": "first.csv",
"type": "File"
},
{
"name": "healthcare-copyAct.csv",
"type": "File"
},
{
"name": "healthcare-dataset-stroke-data.csv",
"type": "File"
},
{
"name": "second.csv",
"type": "File"
}
]