FolderListModel QML Type
The FolderListModel provides a model of the contents of a file system folder. More...
Import Statement: | import Qt.labs.folderlistmodel 2.7 |
Properties
- caseSensitive : bool
- count : int
- folder : url
- nameFilters : list<string>
- parentFolder : url
- rootFolder : url
- showDirs : bool
- showDirsFirst : bool
- showDotAndDotDot : bool
- showFiles : bool
- showHidden : bool
- showOnlyReadable : bool
- sortCaseSensitive : bool
- sortField : enumeration
- sortReversed : bool
- status : enumeration
Methods
Detailed Description
FolderListModel provides access to information about the contents of a folder in the local file system, exposing a list of files to views and other data components.
Note: This type is made available by importing the Qt.labs.folderlistmodel
module. Elements in the Qt.labs module are not guaranteed to remain compatible in future versions.
Note: Some features in FolderListModel depend on QFileSystemWatcher. If QFileSystemWatcher is disabled, the folder set using setFolder
is not watched for changes, which results in signals typically emitted on directory changes (like directoryUpdated or directoryChanged) not being emitted without manually calling setFolder
again. For more information, see Qt Configure Options.
import Qt.labs.folderlistmodel
The folder property specifies the folder to access. Information about the files and directories in the folder is supplied via the model's interface. Components access names and paths via the following roles:
fileName
(string
)filePath
(string
)fileURL
(url
) (since Qt 5.2; deprecated since Qt 5.15)fileUrl
(url
) (since Qt 5.15)fileBaseName
(string
)fileSuffix
(string
)fileSize
(qlonglong
)fileModified
(date
)fileAccessed
(date
)fileIsDir
(bool
)
Additionally a file entry can be differentiated from a folder entry via the isFolder() method.
Filtering
Various properties can be set to filter the number of files and directories exposed by the model.
The nameFilters property can be set to contain a list of wildcard filters that are applied to names of files and directories, causing only those that match the filters to be exposed.
Directories can be included or excluded using the showDirs property, navigation directories can also be excluded by setting the showDotAndDotDot property to false, hidden files can be included or excluded using the showHidden property.
It is sometimes useful to limit the files and directories exposed to those that the user can access. The showOnlyReadable property can be set to enable this feature.
Example Usage
The following example shows a FolderListModel being used to provide a list of QML files in a ListView:
import QtQuick import Qt.labs.folderlistmodel ListView { width: 200; height: 400 FolderListModel { id: folderModel nameFilters: ["*.qml"] } Component { id: fileDelegate required property string fileName Text { text: fileName } } model: folderModel delegate: fileDelegate }
Path Separators
Qt uses "/" as a universal directory separator in the same way that "/" is used as a path separator in URLs. If you always use "/" as a directory separator, Qt will translate your paths to conform to the underlying operating system.
See also QML Data Models.
Property Documentation
caseSensitive : bool |
Use case sensitive pattern matching.
By default, this property is true.
count : int |
Returns the number of items in the current folder that match the filter criteria.
folder : url |
The folder property holds a URL for the folder that the model currently provides.
The value must be a file
: or qrc
: URL, or a relative URL.
The default value is the application's working directory at the time when the FolderListModel is first initialized.
The nameFilters property contains a list of file name filters. The filters may include the ? and * wildcards.
The example below filters on PNG and JPEG files:
FolderListModel { nameFilters: [ "*.png", "*.jpg" ] }
Note: Directories are not excluded by filters.
rootFolder : url |
When this property is set, the given folder will be treated as the root in the file system, so that you can only traverse subfolders within it.
showDirs : bool |
If true, directories are included in the model; otherwise only files are included.
By default, this property is true.
Note that the nameFilters are not applied to directories.
See also showDotAndDotDot.
showDirsFirst : bool |
If true, if directories are included in the model they will always be shown first, then the files.
By default, this property is false.
showDotAndDotDot : bool |
If true, the "." and ".." directories are included in the model; otherwise they are excluded.
By default, this property is false.
See also showDirs.
showFiles : bool |
If true, files are included in the model; otherwise only directories are included.
By default, this property is true.
See also showDirs.
showHidden : bool |
If true, hidden files and directories are included in the model; otherwise they are excluded.
By default, this property is false.
showOnlyReadable : bool |
If true, only readable files and directories are shown; otherwise all files and directories are shown.
By default, this property is false.
See also showDirs.
sortCaseSensitive : bool |
If set to true
, the sort is case sensitive. This property is true
by default.
sortField : enumeration |
The sortField property contains the field to use for sorting. sortField
may be one of:
Constant | Description |
---|---|
FolderListModel.Unsorted | no sorting is applied |
FolderListModel.Name | sort by filename (default) |
FolderListModel.Time | sort by time modified |
FolderListModel.Size | sort by file size |
FolderListModel.Type | sort by file type/extension |
See also sortReversed.
sortReversed : bool |
If set to true, reverses the sort order. The default is false.
See also sortField.
status : enumeration |
This property holds the status of folder reading. It can be one of:
Constant | Description |
---|---|
FolderListModel.Null | no folder has been set |
FolderListModel.Ready | the folder has been loaded |
FolderListModel.Loading | the folder is currently being loaded |
Use this status to provide an update or respond to the status change in some way. For example, you could:
- Trigger a state change:
State { name: 'loaded'; when: folderModel.status == FolderListModel.Ready }
- Implement an
onStatusChanged
signal handler:FolderListModel { id: folderModel onStatusChanged: if (folderModel.status == FolderListModel.Ready) console.log('Loaded') }
- Bind to the status value:
Text { text: folderModel.status == FolderListModel.Ready ? 'Loaded' : 'Not loaded' }
Method Documentation
Returns the folder property for the given index. The following properties are available:
fileName
(string
)filePath
(string
)fileURL
(url
) (since Qt 5.2; deprecated since Qt 5.15)fileUrl
(url
) (since Qt 5.15)fileBaseName
(string
)fileSuffix
(string
)fileSize
(qlonglong
)fileModified
(date
)fileAccessed
(date
)fileIsDir
(bool
)
Returns the index of the given file URL if the model contains it, or -1 if not.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.