MX727 Offline Upload & Sell: Off
|
The file names aren't numbers. They are text to the computer, so that is why they end up sorted the way they do.
Think of it in terms of A, B, C and then you have AA, BB, CC, that gets sorted as A, AA, B, BB, C, CC
So, 1, 2, 3, 11, 22, 33 interpreted as text gets sorted 1, 11, 2, 22, 3, 33
Finally, the solution is to use leading zeros when naming the files during import. Then you end up with 01, 02, 03, 11, 22, 33
|