QT 目录遍历,过滤与查找

    查找目录下已存在的sd*目录

    QString Path ="/mnt/";

    QDir dir(path);
    if (!dir.exists())
    {
        return;
    }

    QStringList list,Names;
    Names = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot); //遍历时筛选
    qDebug()<<"xx"<0)
    {
        Path.append(list.at(0));   
    }

 

你可能感兴趣的:(QT)