qt 获取文件夹中文件名

bool TerminalCommand::command_cleancache(QString path){
    QDir dir(path);
    QFileInfoList f_list=dir.entryInfoList();
    dir.setFilter(QDir::Files|QDir::NoDot|QDir::NoDotAndDotDot|QDir::NoSymLinks);
    for(int i=0;i 
  
            QFileInfo f_info=f_list.at(i);
            QString stt=f_info.fileName();
            qDebug()< 
  
    }
 
  
    return true;
}

你可能感兴趣的:(qt 获取文件夹中文件名)