How to make it display correct alphabetical / numerical order?

I have a folder filled with 156 files.  The problem is once I reach 100 it places it after 09 then after 156 it places 10 there followe by 11, 12, 13, etc…

ie:

08

09

100

101

102

155

156

10

11

12

13

You need to pad with enough zeros so that they’ll sort correctly.

001

002…

010…

100…

Or spaces (you can’t do that from Windows Explorer, though, use a Command Prompt).

Cocovanna