Hello,
When using MultiFileSelectPopup function like this:
MultiFileSelectPopup ("", " *.txt", "Open Multiple Odyssey Files", 0, 0, 1, &num_files, &file_list);
Let say that the following files are now in the file_list:
1.txt
2.txt
...
6.txt
When retrieving the files in a for loop and calling something like this:
*(file_list+i); i++;
It gave me 3.txt, 5.txt, 6.txt, 4.txt, 2.txt, and 1.txt. Is there an easier way to get it in order like 1.txt, ..., 6.txt?
Thanks,
Ngan Ly