我是靠谱客的博主 满意小天鹅,最近开发中收集的这篇文章主要介绍qt 扫描文件夹中的文件_qt中显示文件夹下的目录及文件的过滤,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

第一种方法:QDirModel + QSortFilterProxyModel的子类

写一个类,继承QSortFilterProxyModel,重写filterAcceptsRow方法

mysortfilter.h文件代码

#ifndef MYSORTFILTER_H

#define MYSORTFILTER_H

#include

#include

class mySortFilter : public QSortFilterProxyModel

{

public:

mySortFilter();

~mySortFilter();

protected:

bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;

};

#endif // MYSORTFILTER_H

mysortfilter.cpp文件

#include "mysortfilter.h"

#include

#include

mySortFilter::mySortFilter()

{

}

mySortFilter::~mySortFilter()

{

}

bool mySortFilter::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const

{

if(!sourceModel()) return false;

QModelIndex index = sourceModel()->index(source_row, 0, source_parent);

QDirModel *model = static_cast(sourceModel());

QString str = model->fileName(index);

if (model->fileInfo(index).isDir()) return true;

else if (model->fileInfo(index).isFile() && (str.endsWith(".cpp") || (str.endsWith(".h")))) return true;

return false;

}

mainwindow.cpp 文件

#include "mainwindow.h"

#include "ui_mainwindow.h"

#include

#include "mysortfilter.h"

MainWindow::MainWindow(QWidget *parent) :

QMainWindow(parent),

ui(new Ui::MainWindow)

{

ui->setupUi(this);

QDirModel *model = new QDirModel();

mySortFilter *proxyModel = new mySortFilter();

proxyModel->setSourceModel(model);

ui->treeView->setModel(proxyModel);

ui->treeView->setRootIndex(proxyModel->mapFromSource(model->index("D:/program")));

}

MainWindow::~MainWindow()

{

delete ui;

}

输出结果

第二种方法:QFileSystemModel

如果用QDirModel实现这有些困难,并且QDirModel在qt新版本中是不推荐使用。可以用QFileSystemModel,只需要调用其成员函数setNameFilters就可以,如实现显示文件下D:/program文件下的目录及.cpp和.h文件

QFileSystemModel *model = new QFileSystemModel();

model->setRootPath("d:/");

QStringList nameFilter;

nameFilter << "*.cpp" << "*.h";

model->setNameFilterDisables(false);

model->setNameFilters(nameFilter);

ui->treeView->setModel(model);

ui->treeView->setRootIndex(model->index("D:/program"));

运行结果:

最后

以上就是满意小天鹅为你收集整理的qt 扫描文件夹中的文件_qt中显示文件夹下的目录及文件的过滤的全部内容,希望文章能够帮你解决qt 扫描文件夹中的文件_qt中显示文件夹下的目录及文件的过滤所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部