问题描述
我正在使用QDir::entryList()
读取目录内容.其中的文件名的结构如下:
I am reading a directories content using QDir::entryList()
. The filenames within are structured like this:
index_randomNumber.png
我需要按照index
对它们进行排序,这是Windows资源管理器对文件进行排序的方式,这样我就可以得到
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
...
而不是QDir::Name
的排序给我带来了什么:
instead of what the sorting by QDir::Name
gives me:
0_0815.png
10000_6661.png
10001_7401.png
...
Qt中是否有内置方法可以实现这一目标,如果没有,实现它的正确位置是什么?
Is there a built-in way in Qt to achieve this and if not, what's the right place to implement it?
推荐答案
如果要使用 QCollator
从 QDir::entryList
,您可以使用 std::sort()
:
If you want to use QCollator
to sort entries from the list of entries returned by QDir::entryList
, you can sort the result with std::sort()
:
dir.setFilter(QDir::Files | QDir::NoSymLinks);
dir.setSorting(QDir::NoSort); // will sort manually with std::sort
auto entryList = dir.entryList();
QCollator collator;
collator.setNumericMode(true);
std::sort(
entryList.begin(),
entryList.end(),
[&collator](const QString &file1, const QString &file2)
{
return collator.compare(file1, file2) < 0;
});
根据 The Badger 的评论,QCollator
也可以直接用作std::sort
,替换了lambda,因此对std::sort
的调用变为:
According to The Badger's comment, QCollator
can also be used directly as an argument to std::sort
, replacing the lambda, so the call to std::sort
becomes:
std::sort(entryList.begin(), entryList.end(), collator);
这篇关于用Qt自然地对文件名排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!