Hi,
I have a requirement to read csv files from network drive one by one by created date and time ascending order which means the file created first will be read first. I am using the following method to get the files from the directory:
files = System.IO.Directory::GetFiles(#Filelocation);
Which method should I use to process the files in created date and time order?
Thanks,
Baber.