I have a metadata activity to get the files in one of my azure data factory pipeline and its linked to a data lake. Is there any method available in the Azure data factory for sorting the available files based on the file name in the metadata activity?
Sample output for the Metadata activity is given below
"childitems" :[ { "name":"File_20200101.csv", "type": "File" }, { "name":"File_20200501.csv", "type": "File" }, { "name":"File_20200301.csv", "type": "File" }, { "name":"File_20200201.csv", "type": "File" } ]
I need to get the files in the below-given order.
"childitems" :[ { "name":"File_20200101.csv", "type": "File" }, { "name":"File_20200201.csv", "type": "File" }, { "name":"File_20200301.csv", "type": "File" }, { "name":"File_20200501.csv", "type": "File" } ]