I have some music files that I want displayed in numeric
order. I have numbered them from 1 to 100, but will not
display in this order they go 1, 11, 12, 13, 13..19, 2,
20, 21 and so on. Is there a way to make them go 1, 2, 3,
4, 5, 6??

Re: make Windows Explorer Display files in numeric order by David

David
Thu Jul 10 15:02:50 CDT 2003

Tom:

You have to pad the numbers with a zero "0"

01
02
03
04
05
10
11
12

If you have 1,000 files

000
001
002
003
004
999

If you have 10,000 files
0000
0001
0100
9999

I think you get the point.

Dave