I imagine there are too many possible ways to name files/directories each leading to different "best" sort orders to add anything like this to the standard distribution, although possibly there might be space for a "name, sorted numerically" checkbox/list item.
If you want to DIY for your particular naming/numbering scheme, a standard way to order alphanumeric fields numerically is to use "ORDER BY CAST(name AS UNSIGNED) ASC" in the sql where name and UNSIGNED etc are set appropriately.
I smile as george2 touched upon a peeve of mine, the alphanumeric ordering. It's not exclusive to ZP, that I know. It's hard to catch because my directories show the files in "perfect" numeric order. Ended up renaming ALL my files to add zeros to overcome the problem.
Comments
If you want to DIY for your particular naming/numbering scheme, a standard way to order alphanumeric fields numerically is to use "ORDER BY CAST(name AS UNSIGNED) ASC" in the sql where name and UNSIGNED etc are set appropriately.