Hi @Rohit Boddu ,
Welcome to Microsoft Q&A Platform. Thanks for posting the query.
I used below approach to implement this requirement in azure data factory. Using "Get Metadata", "Foreach", "IF Condition" and "delete" activities this can be achieved. Below GIF shows the details, for testing, I deleted container less than 10days age by using delete activity in false activity of "IF Condition", the same can be used in true condition for greater than 10days containers.
IF Condition Expression used:
@greaterOrEquals(div(sub(int(ticks(utcnow())),int(ticks(activity('Get Metadata2').output.lastModified))),864000000000),10)
Hope this helps! Please let us know for further queries and we will be glad to assist.