QFileInfo露
- PyQt5.QtCore.QFileInfo
Description露
The QFileInfo class provides system-independent file information.
QFileInfo provides information about a file鈥檚 name and position (path) in the file system, its access rights and whether it is a directory or symbolic link, etc. The file鈥檚 size and last modified/read times are also available. QFileInfo can also be used to obtain information about a Qt resource.
A QFileInfo can point to a file with either a relative or an absolute file path. Absolute file paths begin with the directory separator 鈥/鈥 (or with a drive specification on Windows). Relative file names begin with a directory name or a file name and specify a path relative to the current working directory. An example of an absolute path is the string 鈥/tmp/quartz鈥. A relative path might look like 鈥渟rc/fatlib鈥. You can use the function isRelative() to check whether a QFileInfo is using a relative or an absolute file path. You can call the function makeAbsolute() to convert a relative QFileInfo鈥檚 path to an absolute path.
The file that the QFileInfo works on is set in the constructor or later with setFile(). Use exists() to see if the file exists and size() to get its size.
The file鈥檚 type is obtained with isFile(), isDir() and isSymLink(). The symLinkTarget() function provides the name of the file the symlink points to.
On Unix (including macOS and iOS), the symlink has the same size() has the file it points to, because Unix handles symlinks transparently; similarly, opening a symlink using QFile effectively opens the link鈥檚 target. For example:
# #ifdef Q_OS_UNIX
# QFileInfo info1("/home/bob/bin/untabify");
# info1.isSymLink(); // returns true
# info1.absoluteFilePath(); // returns "/home/bob/bin/untabify"
# info1.size(); // returns 56201
# info1.symLinkTarget(); // returns "/opt/pretty++/bin/untabify"
# QFileInfo info2(info1.symLinkTarget());
# info2.isSymLink(); // returns false
# info2.absoluteFilePath(); // returns "/opt/pretty++/bin/untabify"
# info2.size(); // returns 56201
# #endif
On Windows, symlinks (shortcuts) are .lnk
files. The reported size() is that of the symlink (not the link鈥檚 target), and opening a symlink using QFile opens the .lnk
file. For example:
# #ifdef Q_OS_WIN
# QFileInfo info1("C:\\Documents and Settings\\Bob\\untabify.lnk");
# info1.isSymLink(); // returns true
# info1.absoluteFilePath(); // returns "C:/Documents and Settings/Bob/untabify.lnk"
# info1.size(); // returns 743
# info1.symLinkTarget(); // returns "C:/Pretty++/untabify"
# QFileInfo info2(info1.symLinkTarget());
# info2.isSymLink(); // returns false
# info2.absoluteFilePath(); // returns "C:/Pretty++/untabify"
# info2.size(); // returns 63942
# #endif
Elements of the file鈥檚 name can be extracted with path() and fileName(). The fileName()鈥檚 parts can be extracted with baseName(), suffix() or completeSuffix(). QFileInfo objects to directories created by Qt classes will not have a trailing file separator. If you wish to use trailing separators in your own file info objects, just append one to the file name given to the constructors or setFile().
The file鈥檚 dates are returned by created(), lastModified(), lastRead() and fileTime(). Information about the file鈥檚 access permissions is obtained with isReadable(), isWritable() and isExecutable(). The file鈥檚 ownership is available from owner(), ownerId(), group() and groupId(). You can examine a file鈥檚 permissions and ownership in a single statement using the permission() function.
Note: On NTFS file systems, ownership and permissions checking is disabled by default for performance reasons. To enable it, include the following line:
# extern Q_CORE_EXPORT int qt_ntfs_permission_lookup;
Permission checking is then turned on and off by incrementing and decrementing qt_ntfs_permission_lookup
by 1.
# qt_ntfs_permission_lookup++; // turn checking on
# qt_ntfs_permission_lookup--; // turn it off again
Performance Issues露
Some of QFileInfo鈥檚 functions query the file system, but for performance reasons, some functions only operate on the file name itself. For example: To return the absolute path of a relative file name, absolutePath() has to query the file system. The path() function, however, can work on the file name directly, and so it is faster.
Note: To speed up performance, QFileInfo caches information about the file.
Because files can be changed by other users or programs, or even by other parts of the same program, there is a function that refreshes the file information: refresh(). If you want to switch off a QFileInfo鈥檚 caching and force it to access the file system every time you request information from it call setCaching()(false).
Methods露
- __init__()
Constructs an empty QFileInfo object.
Note that an empty QFileInfo object contain no file reference.
See also
- __init__(str)
Constructs a new QFileInfo that gives information about the given file. The file can also include an absolute or relative path.
See also
- __init__(QFile)
Constructs a new QFileInfo that gives information about file file.
If the file has a relative path, the QFileInfo will also have a relative path.
See also
- __init__(QDir, str)
Constructs a new QFileInfo that gives information about the given file in the directory dir.
If dir has a relative path, the QFileInfo will also have a relative path.
If file is an absolute path, then the directory specified by dir will be disregarded.
See also
- absoluteFilePath() → str
Returns an absolute path including the file name.
The absolute path name consists of the full path and the file name. On Unix this will always begin with the root, 鈥/鈥, directory. On Windows this will always begin 鈥楧:/鈥 where D is a drive letter, except for network shares that are not mapped to a drive letter, in which case the path will begin 鈥//sharename/鈥. QFileInfo will uppercase drive letters. Note that QDir does not do this. The code snippet below shows this.
# This code needs porting to Python. # /**************************************************************************** # ** # ** Copyright (C) 2016 The Qt Company Ltd. # ** Contact: https://www.qt.io/licensing/ # ** # ** This file is part of the documentation of the Qt Toolkit. # ** # ** $QT_BEGIN_LICENSE:BSD$ # ** Commercial License Usage # ** Licensees holding valid commercial Qt licenses may use this file in # ** accordance with the commercial license agreement provided with the # ** Software or, alternatively, in accordance with the terms contained in # ** a written agreement between you and The Qt Company. For licensing terms # ** and conditions see https://www.qt.io/terms-conditions. For further # ** information use the contact form at https://www.qt.io/contact-us. # ** # ** BSD License Usage # ** Alternatively, you may use this file under the terms of the BSD license # ** as follows: # ** # ** "Redistribution and use in source and binary forms, with or without # ** modification, are permitted provided that the following conditions are # ** met: # ** * Redistributions of source code must retain the above copyright # ** notice, this list of conditions and the following disclaimer. # ** * Redistributions in binary form must reproduce the above copyright # ** notice, this list of conditions and the following disclaimer in # ** the documentation and/or other materials provided with the # ** distribution. # ** * Neither the name of The Qt Company Ltd nor the names of its # ** contributors may be used to endorse or promote products derived # ** from this software without specific prior written permission. # ** # ** # ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." # ** # ** $QT_END_LICENSE$ # ** # ****************************************************************************/ # //![newstuff] # QFileInfo fi("c:/temp/foo"); => fi.absoluteFilePath() => "C:/temp/foo" # //![newstuff] # #! [0] # #ifdef Q_OS_UNIX # QFileInfo info1("/home/bob/bin/untabify"); # info1.isSymLink(); // returns true # info1.absoluteFilePath(); // returns "/home/bob/bin/untabify" # info1.size(); // returns 56201 # info1.symLinkTarget(); // returns "/opt/pretty++/bin/untabify" # QFileInfo info2(info1.symLinkTarget()); # info2.isSymLink(); // returns false # info2.absoluteFilePath(); // returns "/opt/pretty++/bin/untabify" # info2.size(); // returns 56201 # #endif # #! [0] # #! [1] # #ifdef Q_OS_WIN # QFileInfo info1("C:\\Documents and Settings\\Bob\\untabify.lnk"); # info1.isSymLink(); // returns true # info1.absoluteFilePath(); // returns "C:/Documents and Settings/Bob/untabify.lnk" # info1.size(); // returns 743 # info1.symLinkTarget(); // returns "C:/Pretty++/untabify" # QFileInfo info2(info1.symLinkTarget()); # info2.isSymLink(); // returns false # info2.absoluteFilePath(); // returns "C:/Pretty++/untabify" # info2.size(); // returns 63942 # #endif # #! [1] # #! [2] # QString absolute = "/local/bin"; # QString relative = "local/bin"; # QFileInfo absFile(absolute); # QFileInfo relFile(relative); # QDir::setCurrent(QDir::rootPath()); # // absFile and relFile now point to the same file # QDir::setCurrent("/tmp"); # // absFile now points to "/local/bin", # // while relFile points to "/tmp/local/bin" # #! [2] # #! [3] # QFileInfo fi("/tmp/archive.tar.gz"); # QString name = fi.fileName(); // name = "archive.tar.gz" # #! [3] # #! [4] # QFileInfo fi("/Applications/Safari.app"); # QString bundle = fi.bundleName(); // name = "Safari" # #! [4] # #! [5] # QFileInfo fi("/tmp/archive.tar.gz"); # QString base = fi.baseName(); // base = "archive" # #! [5] # #! [6] # QFileInfo fi("/tmp/archive.tar.gz"); # QString base = fi.completeBaseName(); // base = "archive.tar" # #! [6] # #! [7] # QFileInfo fi("/tmp/archive.tar.gz"); # QString ext = fi.completeSuffix(); // ext = "tar.gz" # #! [7] # #! [8] # QFileInfo fi("/tmp/archive.tar.gz"); # QString ext = fi.suffix(); // ext = "gz" # #! [8] # #! [9] # QFileInfo info(fileName); # if (info.isSymLink()) # fileName = info.symLinkTarget(); # #! [9] # #! [10] # QFileInfo fi("/tmp/archive.tar.gz"); # if (fi.permission(QFile::WriteUser | QFile::ReadGroup)) # qWarning("I can change the file; my group can read the file"); # if (fi.permission(QFile::WriteGroup | QFile::WriteOther)) # qWarning("The group or others can change the file"); # #! [10]
This function returns the same as filePath(), unless isRelative() is true. In contrast to canonicalFilePath(), symbolic links or redundant 鈥.鈥 or 鈥..鈥 elements are not necessarily removed.
Warning: If filePath() is empty the behavior of this function is undefined.
See also
- absolutePath() → str
Returns a file鈥檚 path absolute path. This doesn鈥檛 include the file name.
On Unix the absolute path will always begin with the root, 鈥/鈥, directory. On Windows this will always begin 鈥楧:/鈥 where D is a drive letter, except for network shares that are not mapped to a drive letter, in which case the path will begin 鈥//sharename/鈥.
In contrast to canonicalPath() symbolic links or redundant 鈥.鈥 or 鈥..鈥 elements are not necessarily removed.
Warning: If filePath() is empty the behavior of this function is undefined.
See also
absoluteFilePath(), path(), canonicalPath(), fileName(), isRelative().
- baseName() → str
Returns the base name of the file without the path.
The base name consists of all characters in the file up to (but not including) the first 鈥.鈥 character.
Example:
# QFileInfo fi("/tmp/archive.tar.gz"); # QString base = fi.baseName(); // base = "archive"
The base name of a file is computed equally on all platforms, independent of file naming conventions (e.g., 鈥.bashrc鈥 on Unix has an empty base name, and the suffix is 鈥渂ashrc鈥).
See also
- birthTime() → QDateTime
TODO
- bundleName() → str
Returns the name of the bundle.
On macOS and iOS this returns the proper localized name for a bundle if the path isBundle(). On all other platforms an empty QString is returned.
Example:
# QFileInfo fi("/Applications/Safari.app"); # QString bundle = fi.bundleName(); // name = "Safari"
See also
- caching() → bool
Returns
true
if caching is enabled; otherwise returnsfalse
.See also
- canonicalFilePath() → str
Returns the canonical path including the file name, i.e. an absolute path without symbolic links or redundant 鈥.鈥 or 鈥..鈥 elements.
If the file does not exist, returns an empty string.
See also
- canonicalPath() → str
Returns the file鈥檚 path canonical path (excluding the file name), i.e. an absolute path without symbolic links or redundant 鈥.鈥 or 鈥..鈥 elements.
If the file does not exist, returns an empty string.
See also
- completeBaseName() → str
Returns the complete base name of the file without the path.
The complete base name consists of all characters in the file up to (but not including) the last 鈥.鈥 character.
Example:
# QFileInfo fi("/tmp/archive.tar.gz"); # QString base = fi.completeBaseName(); // base = "archive.tar"
See also
- completeSuffix() → str
Returns the complete suffix (extension) of the file.
The complete suffix consists of all characters in the file after (but not including) the first 鈥.鈥.
Example:
# QFileInfo fi("/tmp/archive.tar.gz"); # QString ext = fi.completeSuffix(); // ext = "tar.gz"
See also
- created() → QDateTime
TODO
- dir() → QDir
Returns the path of the object鈥檚 parent directory as a QDir object.
Note: The QDir returned always corresponds to the object鈥檚 parent directory, even if the QFileInfo represents a directory.
For each of the following, returns the QDir
"~/examples/191697"
.# QFileInfo fileInfo1("~/examples/191697/."); # QFileInfo fileInfo2("~/examples/191697/.."); # QFileInfo fileInfo3("~/examples/191697/main.cpp");
For each of the following, returns the QDir
"."
.# QFileInfo fileInfo4("."); # QFileInfo fileInfo5(".."); # QFileInfo fileInfo6("main.cpp");
See also
absolutePath(), filePath(), fileName(), isRelative(), absoluteDir().
- __eq__(QFileInfo) → bool
TODO
- exists() → bool
Returns
true
if the file exists; otherwise returnsfalse
.Note: If the file is a symlink that points to a non-existing file, false is returned.
-
@staticmethod
exists(str) → bool TODO
- fileName() → str
Returns the name of the file, excluding the path.
Example:
# QFileInfo fi("/tmp/archive.tar.gz"); # QString name = fi.fileName(); // name = "archive.tar.gz"
Note that, if this QFileInfo object is given a path ending in a slash, the name of the file is considered empty.
See also
- filePath() → str
Returns the file name, including the path (which may be absolute or relative).
See also
- __fspath__() → object
TODO
- group() → str
Returns the group of the file. On Windows, on systems where files do not have groups, or if an error occurs, an empty string is returned.
This function can be time consuming under Unix (in the order of milliseconds).
- groupId() → int
Returns the id of the group the file belongs to.
On Windows and on systems where files do not have groups this function always returns (uint) -2.
- isAbsolute() → bool
TODO
- isBundle() → bool
Returns
true
if this object points to a bundle or to a symbolic link to a bundle on macOS and iOS; otherwise returnsfalse
.See also
- isDir() → bool
Returns
true
if this object points to a directory or to a symbolic link to a directory; otherwise returnsfalse
.See also
- isExecutable() → bool
Returns
true
if the file is executable; otherwise returnsfalse
.See also
- isFile() → bool
Returns
true
if this object points to a file or to a symbolic link to a file. Returnsfalse
if the object points to something which isn鈥檛 a file, such as a directory.See also
- isHidden() → bool
Returns
true
if this is a hidden鈥 file; otherwise returns ``false`.Note: This function returns
true
for the special entries 鈥.鈥 and 鈥..鈥 on Unix, even though entryList() threats them as shown.
- isNativePath() → bool
TODO
- isReadable() → bool
Returns
true
if the user can read the file; otherwise returnsfalse
.Note: If the NTFS permissions check has not been enabled, the result on Windows will merely reflect whether the file exists.
See also
- isRelative() → bool
Returns
true
if the file path name is relative, otherwise returns false if the path is absolute (e.g. under Unix a path is absolute if it begins with a 鈥/鈥).See also
- isRoot() → bool
Returns
true
if the object points to a directory or to a symbolic link to a directory, and that directory is the root directory; otherwise returnsfalse
.
- isShortcut() → bool
TODO
- isSymbolicLink() → bool
TODO
- isSymLink() → bool
Returns
true
if this object points to a symbolic link; otherwise returnsfalse
.Symbolic links exist on Unix (including macOS and iOS) and Windows and are typically created by the
ln -s
ormklink
commands, respectively. Opening a symbolic link effectively opens the symLinkTarget().In addition, true will be returned for shortcuts (
\*.lnk
files) on Windows. Opening those will open the.lnk
file itself.Example:
# QFileInfo info(fileName); # if (info.isSymLink()) # fileName = info.symLinkTarget();
Note: If the symlink points to a non existing file, exists() returns false.
See also
- isWritable() → bool
Returns
true
if the user can write to the file; otherwise returnsfalse
.Note: If the NTFS permissions check has not been enabled, the result on Windows will merely reflect whether the file is marked as Read Only.
See also
- lastModified() → QDateTime
Returns the date and local time when the file was last modified.
See also
- lastRead() → QDateTime
Returns the date and local time when the file was last read (accessed).
On platforms where this information is not available, returns the same as lastModified().
See also
- makeAbsolute() → bool
Converts the file鈥檚 path to an absolute path if it is not already in that form. Returns
true
to indicate that the path was converted; otherwise returnsfalse
to indicate that the path was already absolute.See also
- metadataChangeTime() → QDateTime
TODO
- __ne__(QFileInfo) → bool
TODO
- owner() → str
Returns the owner of the file. On systems where files do not have owners, or if an error occurs, an empty string is returned.
This function can be time consuming under Unix (in the order of milliseconds). On Windows, it will return an empty string unless the NTFS permissions check has been enabled.
- ownerId() → int
Returns the id of the owner of the file.
On Windows and on systems where files do not have owners this function returns ((uint) -2).
- path() → str
Returns the file鈥檚 path. This doesn鈥檛 include the file name.
Note that, if this QFileInfo object is given a path ending in a slash, the name of the file is considered empty and this function will return the entire path.
See also
filePath(), absolutePath(), canonicalPath(), dir(), fileName(), isRelative().
- permission(Union[Permissions, Permission]) → bool
TODO
- permissions() → Permissions
Returns the complete OR-ed together combination of QFile::Permissions for the file.
Note: The result might be inaccurate on Windows if the NTFS permissions check has not been enabled.
- refresh()
Refreshes the information about the file, i.e. reads in information from the file system the next time a cached property is fetched.
- setCaching(bool)
If enable is true, enables caching of file information. If enable is false caching is disabled.
When caching is enabled, QFileInfo reads the file information from the file system the first time it鈥檚 needed, but generally not later.
Caching is enabled by default.
- setFile(str)
Sets the file that the QFileInfo provides information about to file.
The file can also include an absolute or relative file path. Absolute paths begin with the directory separator (e.g. 鈥/鈥 under Unix) or a drive specification (under Windows). Relative file names begin with a directory name or a file name and specify a path relative to the current directory.
Example:
# QString absolute = "/local/bin"; # QString relative = "local/bin"; # QFileInfo absFile(absolute); # QFileInfo relFile(relative); # QDir::setCurrent(QDir::rootPath()); # // absFile and relFile now point to the same file # QDir::setCurrent("/tmp"); # // absFile now points to "/local/bin", # // while relFile points to "/tmp/local/bin"
See also
- setFile(QFile)
This is an overloaded function.
Sets the file that the QFileInfo provides information about to file.
If file includes a relative path, the QFileInfo will also have a relative path.
See also
- setFile(QDir, str)
This is an overloaded function.
Sets the file that the QFileInfo provides information about to file in directory dir.
If file includes a relative path, the QFileInfo will also have a relative path.
See also
- size() → int
Returns the file size in bytes. If the file does not exist or cannot be fetched, 0 is returned.
See also
- suffix() → str
Returns the suffix (extension) of the file.
The suffix consists of all characters in the file after (but not including) the last 鈥.鈥.
Example:
# QFileInfo fi("/tmp/archive.tar.gz"); # QString ext = fi.suffix(); // ext = "gz"
The suffix of a file is computed equally on all platforms, independent of file naming conventions (e.g., 鈥.bashrc鈥 on Unix has an empty base name, and the suffix is 鈥渂ashrc鈥).
See also
fileName(), completeSuffix(), baseName(), completeBaseName().
- swap(QFileInfo)
TODO
- symLinkTarget() → str
TODO