qt 怎么使用多线程遍历文件夹

qt 怎么使用多线程遍历文件夹,第1张

一、Qt遍历文件夹下一层的文件

方式1:

void ImageTree::addFolderImages(QString path)

{

//判断路径是否存在

QDir dir(path)

if(!dir.exists())

{

return

}

dir.setFilter(QDir::Files | QDir::NoSymLinks)

QFileInfoList list = dir.entryInfoList()

int file_count = list.count()

if(file_count <= 0)

{

return

}

QStringList string_list

for(int i=0i

{

QFileInfo file_info = list.at(i)

QString suffix = file_info.suffix()

if(QString::compare(suffix, QString("png"), Qt::CaseInsensitive) == 0)

{

QString absolute_file_path = file_info.absoluteFilePath()

string_list.append(absolute_file_path)

}

}

}

分析:遍历文件的下一层,对于系统而言包括:文件夹、文件、快捷方式,使用setFilter即可过滤。通过entryInfoList则可以获念携烂取过滤后所得到的文件夹下的文件信息列表,遍历文件通过 *** 作QFileInfo可隐键得到所需的文件详细信息仔漏(大小、类型、后缀等)。

建谈亮差QSortFilterProxyModel的子类含皮,重写filterAcceptsRow()方法。

C/键茄C++ code?

bool MySortFilterProxyModel::filterAcceptsRow(int sourceRow,

const QModelIndex &sourceParent) const

{

QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent)

QString filePath = index.data(Qt::UserRole + 1).toString()

QFileInfo info = QFileInfo(filePath)

if(info.isDir())

{

return true

}

else

{

return false

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12218652.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存