StandardPaths QML Type
Provides access to the standard system paths. More...
Import Statement: | import QtCore |
Since: | Qt 6.2 |
Inherits: |
Methods
- string displayName(StandardLocation type)
- url findExecutable(string executableName, list<string> paths)
- url locate(StandardLocation type, string fileName, LocateOptions options)
- list<url> locateAll(StandardLocation type, string fileName, LocateOptions options)
- list<url> standardLocations(StandardLocation type)
- url writableLocation(StandardLocation type)
Detailed Description
The StandardPaths singleton type provides methods for querying the standard system paths.
property url documentsFolder: StandardPaths.writableLocation(StandardPaths.DocumentsLocation)
See also QStandardPaths.
Method Documentation
string displayName(StandardLocation type) |
Returns a localized display name for the given location type or an empty QString if no relevant location can be found.
See also QStandardPaths::displayName().
Finds the executable named executableName in the specified paths, or the system paths if paths is empty.
On most operating systems the system path is determined by the PATH
environment variable. The directories where to search for the executable can be set in the paths argument. To search in both your own paths and the system paths, call findExecutable twice, once with paths set and once with paths empty. Symlinks are not resolved in order to preserve behavior for the case of executables whose behavior depends on the name they are invoked with.
Note: On Windows, the usual executable extensions (from the PATHEXT environment variable) are automatically appended. For example, the findExecutable("foo") call finds foo.exe
or foo.bat
if present.
Returns the absolute file path to the executable, or an empty string if not found.
If the given executableName is an absolute path pointing to an executable, its clean path is returned.
See also QStandardPaths::findExecutable().
Finds a file or directory called fileName in the standard locations for type.
The options flag lets you specify whether to look for files or directories. By default, this flag is set to LocateFile
.
Returns the absolute path to the first file or directory found, otherwise returns an empty string.
See also QStandardPaths::locate().
Finds all files or directories by the name, fileName, in the standard locations for type.
The options flag lets you specify whether to look for files or directories. By default, this flag is set to LocateFile
.
Returns the list of all the files that were found.
See also QStandardPaths::locateAll().
Returns all the directories where files of type belong.
The list of directories is sorted from high to low priority, starting with writableLocation() if it can be determined. This list is empty if no locations for type are defined.
See also QStandardPaths::standardLocations().
url writableLocation(StandardLocation type) |
Returns the directory where files of type should be written to, or an empty string if the location cannot be determined.
Note: The storage location returned may not exist; that is, it may need to be created by the system or the user.
See also QStandardPaths::writableLocation().
© 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.