I am reading a directories content using QDir::entryList()
. The filenames within are structured like this:
index_randomNumber.png
I need them sorted by index
, the way the Windows Explorer would sort the files so that I get
0_0815.png
1_4711.png
2_2063.png
...
instead of what the sorting by QDir::Name
gives me:
0_0815.png
10000_6661.png
10001_7401.png
...
Is there a built-in way in Qt to achieve this and if not, what's the right place to implement it?
See Question&Answers more detail:os