I am using "For Each" statement to browse through all the files in a folder, extract their names and some content and place them in some tables. the only problem I am facing is that the files are processed in a random sequence.
The files in the folder have the names (which corresponds to the time they have been added to the folder): 203909_20160910_1149.csv 203909_20160910_1739.csv 203909_20160911_1259.csv
But "For Each" command processes them in an strange order: first 203909_20160910_1739.csv then 203909_20160911_1259.csv last 203909_20160910_1149.csv
All the tutorials I've seen so far are saying that "For Each" is always using fixed sequence of files ("first to last"), and there is no way I can change it. So I am trying to figure out how are the files indexed if not by name and not by date? Are there any attributes I could set to force A->Z sequence?