How to move files in order by ascending

How can I move files and to have them be read in order by ascending instead of descending? This is the file path that I am using:

String.Join(“”,Directory.GetFiles(DldPath,“*.xls”,SearchOption.AllDirectories).OrderByDescending(Function(d) New FileInfo(d).CreationTime).Take(1))

@olsonse
give a try on assign:
left side: arrOrderedFiles - as String()
right side:

Directory.GetFiles(DldPath,"*.xls",SearchOption.AllDirectories).OrderBy(Function(d) New FileInfo(d).CreationTime).toArray

with a for each you can iterate over arrOrderedFiles and move the files one by one

But is there a way to just put that in the Move File activity in the “From”? I am trying to get it to move from that file path and move the files one by one to another folder path.

@olsonse
do you look for something like this?