Hi @RPA_Innovation ,
- Use a for loop to loop through the folders by giving the main folder as Input.
- Inside the for loop use the following expresssion Directory.GetFiles().OrderByDescending(function(s) System.IO.file.GetCreationTime(s)).First() to get the latest file. Path will be the for loop item (which is the folder path of each of 12 folders inside main folder)
cheers