QFileSystemModel Class Reference

[ QtGui module]

The QFileSystemModel class provides a data model for the local filesystem. 更多...

继承 QAbstractItemModel .

类型

方法

Qt Signals


详细描述

The QFileSystemModel class provides a data model for the local filesystem.

This class provides access to the local filesystem, providing functions for renaming and removing files and directories, and for creating new directories. In the simplest case, it can be used with a suitable display widget as part of a browser or filter.

QFileSystemModel can be accessed using the standard interface provided by QAbstractItemModel , but it also provides some convenience functions that are specific to a directory model. The fileInfo (), isDir (), name (), and path() functions provide information about the underlying files and directories related to items in the model. Directories can be created and removed using mkdir (), rmdir ().

注意: QFileSystemModel requires an instance of a GUI 应用程序。

用法范例

A directory model that displays the contents of a default directory is usually constructed with a parent object:

     QFileSystemModel *model = new QFileSystemModel;
     model->setRootPath(QDir.currentPath());
			

树视图可用于显示模型的内容

     QTreeView *tree = new QTreeView(splitter);
     tree->setModel(model);
			

and the contents of a particular directory can be displayed by setting the tree view's root index:

     tree->setRootIndex(model->index(QDir.currentPath()));
			

The view's root index can be used to control how much of a hierarchical model is displayed. QDirModel (obsolete) 提供 convenience function that returns a suitable model index for a path to a directory within the model.

缓存和性能

QFileSystemModel 不会取出任何文件或目录,直到 setRootPath () 是 called. This will prevent any unnecessary querying on the file system until that point such as listing the drives on Windows.

不像 QDirModel (obsolete) , QFileSystemModel uses a separate thread to populate itself so it will not cause the main thread to hang as the file system is being queried. Calls to rowCount () 会返回 0 until the model populates a directory.

QFileSystemModel keeps a cache with file information. The cache is automatically kept up to date using the QFileSystemWatcher .


类型文档编制

QFileSystemModel.Roles

常量
QFileSystemModel.FileIconRole Qt.DecorationRole
QFileSystemModel.FilePathRole Qt.UserRole + 1
QFileSystemModel.FileNameRole Qt.UserRole + 2
QFileSystemModel.FilePermissions Qt.UserRole + 3

方法文档编制

QFileSystemModel.__init__ ( self , QObject   parent  = None)

parent argument, if not None, causes self to be owned by Qt instead of PyQt.

构造文件系统模型采用给定 parent .

bool QFileSystemModel.canFetchMore ( self , QModelIndex   parent )

重实现自 QAbstractItemModel.canFetchMore ().

int QFileSystemModel.columnCount ( self , QModelIndex   parent  = QModelIndex())

重实现自 QAbstractItemModel.columnCount ().

QVariant QFileSystemModel.data ( self , QModelIndex   index , int  role  = Qt.DisplayRole)

重实现自 QAbstractItemModel.data ().

另请参阅 setData ().

bool QFileSystemModel.dropMimeData ( self , QMimeData   data , Qt.DropAction   action , int  row , int  column , QModelIndex   parent )

重实现自 QAbstractItemModel.dropMimeData ().

处理 data supplied by a drag and drop operation that ended with the given action over the row in the model specified by the row and column and by the parent index.

另请参阅 supportedDropActions ().

bool QFileSystemModel.event ( self , QEvent   event )

重实现自 QObject.event ().

QFileSystemModel.fetchMore ( self , QModelIndex   parent )

重实现自 QAbstractItemModel.fetchMore ().

QIcon QFileSystemModel.fileIcon ( self , QModelIndex   aindex )

Returns the icon for the item stored in the model under the given index .

QFileInfo QFileSystemModel.fileInfo ( self , QModelIndex   aindex )

返回 QFileInfo for the item stored in the model under the given index .

QString QFileSystemModel.fileName ( self , QModelIndex   aindex )

Returns the file name for the item stored in the model under the given index .

QString QFileSystemModel.filePath ( self , QModelIndex   index )

Returns the path of the item stored in the model under the index 给定。

QDir.Filters QFileSystemModel.filter ( self )

Returns the filter specified for the directory model.

If a filter has not been set, the default filter is QDir.AllEntries | QDir.NoDotAndDotDot | QDir.AllDirs .

另请参阅 setFilter () 和 QDir.Filters .

Qt.ItemFlags QFileSystemModel.flags ( self , QModelIndex   index )

重实现自 QAbstractItemModel.flags ().

bool QFileSystemModel.hasChildren ( self , QModelIndex   parent  = QModelIndex())

重实现自 QAbstractItemModel.hasChildren ().

QVariant QFileSystemModel.headerData ( self , int  section , Qt.Orientation   orientation , int  role  = Qt.DisplayRole)

重实现自 QAbstractItemModel.headerData ().

QFileIconProvider QFileSystemModel.iconProvider ( self )

Returns the file icon provider for this directory model.

另请参阅 setIconProvider ().

QModelIndex QFileSystemModel.index ( self , int  row , int  column , QModelIndex   parent  = QModelIndex())

重实现自 QAbstractItemModel.index ().

QModelIndex QFileSystemModel.index ( self , QString  path , int  column  = 0)

这是重载函数。

Returns the model item index for the given path and column .

bool QFileSystemModel.isDir ( self , QModelIndex   index )

Returns true if the model item index represents a directory; otherwise returns false.

bool QFileSystemModel.isReadOnly ( self )

QDateTime QFileSystemModel.lastModified ( self , QModelIndex   index )

Returns the date and time when index was last modified.

QMimeData QFileSystemModel.mimeData ( self , list-of-QModelIndex  indexes )

重实现自 QAbstractItemModel.mimeData ().

Returns an object that contains a serialized description of the specified indexes . The format used to describe the items corresponding to the indexes is obtained from the mimeTypes () 函数。

If the list of indexes is empty, 0 is returned rather than a serialized empty list.

QStringList QFileSystemModel.mimeTypes ( self )

重实现自 QAbstractItemModel.mimeTypes ().

Returns a list of MIME types that can be used to describe a list of items in the model.

QModelIndex QFileSystemModel.mkdir ( self , QModelIndex   parent , QString  name )

Create a directory with the name parent model index.

QVariant QFileSystemModel.myComputer ( self , int  role  = Qt.DisplayRole)

Returns the data stored under the given role for the item "My Computer".

另请参阅 Qt.ItemDataRole .

bool QFileSystemModel.nameFilterDisables ( self )

QStringList QFileSystemModel.nameFilters ( self )

Returns a list of filters applied to the names in the model.

另请参阅 setNameFilters ().

QModelIndex QFileSystemModel.parent ( self , QModelIndex   child )

重实现自 QAbstractItemModel.parent ().

QFile.Permissions QFileSystemModel.permissions ( self , QModelIndex   index )

Returns the complete OR-ed together combination of QFile.Permission index .

bool QFileSystemModel.remove ( self , QModelIndex   aindex )

Removes the model item index from the file system model and deletes the corresponding file from the file system , returning true if successful. If the item cannot be removed, false 被返回。

警告: This function deletes files from the file system; it does not move them to a location where they can be recovered.

另请参阅 rmdir ().

bool QFileSystemModel.resolveSymlinks ( self )

bool QFileSystemModel.rmdir ( self , QModelIndex   aindex )

Removes the directory corresponding to the model item index in the file system model and deletes the corresponding directory from the file system , returning true if successful. If the directory cannot be removed, false is returned.

警告: This function deletes directories from the file system; it does not move them to a location where they can be recovered.

另请参阅 remove ().

QDir QFileSystemModel.rootDirectory ( self )

The currently set directory

另请参阅 rootPath ().

QString QFileSystemModel.rootPath ( self )

The currently set root path

另请参阅 setRootPath () 和 rootDirectory ().

int QFileSystemModel.rowCount ( self , QModelIndex   parent  = QModelIndex())

重实现自 QAbstractItemModel.rowCount ().

bool QFileSystemModel.setData ( self , QModelIndex   idx , QVariant  value , int  role  = Qt.EditRole)

重实现自 QAbstractItemModel.setData ().

另请参阅 data ().

QFileSystemModel.setFilter ( self , QDir.Filters   filters )

Sets the directory model's filter to that specified by filters .

Note that the filter you set should always include the QDir.AllDirs enum value, otherwise QFileSystemModel won't be able to read the directory structure.

另请参阅 filter () 和 QDir.Filters .

QFileSystemModel.setIconProvider ( self , QFileIconProvider   provider )

设置 provider of file icons for the directory model.

另请参阅 iconProvider ().

QFileSystemModel.setNameFilterDisables ( self , bool  enable )

QFileSystemModel.setNameFilters ( self , QStringList  filters )

Sets the name filters to apply against the existing files.

另请参阅 nameFilters ().

QFileSystemModel.setReadOnly ( self , bool  enable )

QFileSystemModel.setResolveSymlinks ( self , bool  enable )

QModelIndex QFileSystemModel.setRootPath ( self , QString  path )

Sets the directory that is being watched by the model to newPath by installing a file system watcher on it. Any changes to files and directories within this directory will be reflected in the model.

If the path is changed, the rootPathChanged () signal will be emitted.

注意: This function does not change the structure of the model or modify the data available to views. In other words, the "root" of the model is not changed to include only files and directories within the directory specified by newPath 在 file system.

另请参阅 rootPath ().

int QFileSystemModel.size ( self , QModelIndex   index )

Returns the size in bytes of index . If the file does not exist, 0 is returned.

QFileSystemModel.sort ( self , int  column , Qt.SortOrder   order  = Qt.AscendingOrder)

重实现自 QAbstractItemModel.sort ().

Qt.DropActions QFileSystemModel.supportedDropActions ( self )

重实现自 QAbstractItemModel.supportedDropActions ().

QFileSystemModel.timerEvent ( self , QTimerEvent   event )

重实现自 QObject.timerEvent ().

QString QFileSystemModel.type ( self , QModelIndex   index )

Returns the type of file index such as "Directory" or "JPEG file".


Qt Signal Documentation

void directoryLoaded (const QString&)

This is the default overload of this signal.

This signal is emitted when the gatherer thread has finished to load the path .

该函数在 Qt 4.7 引入。

void fileRenamed (const QString&,const QString&,const QString&)

This is the default overload of this signal.

This signal is emitted whenever a file with the oldName is successfully renamed to newName . The file is located in in the directory path .

void rootPathChanged (const QString&)

This is the default overload of this signal.

This signal is emitted whenever the root path has been changed 到 newPath .