QT-如何使用QDIR :: EntriSt()同时使用特定文件类型和目录过滤两个文件



可以通过使用QDir::entryList()同时检索具有特定文件类型和目录名称的文件名?

我的代码中有标志QDir::Dirs。但是由于我添加了<< "*.mp4",因此它忽略了文件夹。

void Hierarchy::setItems(const QString& path, int level)
{
    QDir source(path);
    if (!source.exists())
        return;
    QStringList folders = source.entryList(QStringList() << "*.mp4", 
            QDir::Files | QDir::NoDot | QDir::NoDotDot | QDir::Dirs);
    for (int i = 0; i < folders.size(); ++i) {
        qDebug() << "Level " << i << " " << folders[i];
        setItems(path + "/" + folders[i] + "/", level++);
    }
}

您可以创建两个列表:一个用于文件夹,另一个用于文件:

void setItems(QString const& path, int level)
{
    QDir const source(path);
    if (!source.exists())
        return;
    QStringList const files = source.entryList(QStringList() << "*.mp4", QDir::Files);
    QStringList const folders = source.entryList(QDir::NoDot | QDir::NoDotDot | QDir::Dirs);
    QStringList const all = folders + files;
    for (QString const& name: all)
    {
        QString const fullPathName = path + QDir::separator() + name;
        if (QFileInfo(fullPathName).isDir())
        {
            setItems(fullPathName, level++);
            continue;
        }
        qDebug() << "Level " << level << " " << fullPathName;
    }
}

相关内容

  • 没有找到相关文章

最新更新