Member Function Documentation
QFileInfo::QFileInfo ()
Constructs an empty QFileInfo object.
Note that an empty QFileInfo object contain no file reference.
See also setFile().
QFileInfo::QFileInfo ( const QString & file )
Constructs a new QFileInfo that gives information about the given file. The file can also include an absolute or relative path.
See also setFile(), isRelative(), QDir::setCurrent(), and QDir::isRelativePath().
QFileInfo::QFileInfo ( const QFile & file )
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 isRelative().
QFileInfo::QFileInfo ( const QDir & dir, const QString & file )
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 isRelative().
QFileInfo::QFileInfo ( const QFileInfo & fileinfo )
Constructs a new QFileInfo that is a copy of the given fileinfo.
QFileInfo::~QFileInfo ()
Destroys the QFileInfo and frees its resources.
QDir QFileInfo::absoluteDir () const
Returns the file's absolute path as a QDir object.
See also dir(), filePath(), fileName(), and isRelative().
QString QFileInfo::absoluteFilePath () const
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 'D:/' 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.
QFileInfo fi("c:/temp/foo"); => fi.absoluteFilePath() => "C:/temp/foo"
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.
If the QFileInfo is empty it returns QDir::currentPath().
See also filePath(), canonicalFilePath(), and isRelative().
QString QFileInfo::absolutePath () const
Returns a file's path absolute path. This doesn't include the file name.
On Unix the absolute path will always begin with the root, '/', directory. On Windows this will always begin 'D:/' 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 the QFileInfo object was created with an empty QString, the behavior of this function is undefined.
See also absoluteFilePath(), path(), canonicalPath(), fileName(), and isRelative().
QString QFileInfo::baseName () const
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();
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 "bashrc").
See also fileName(), suffix(), completeSuffix(), and completeBaseName().
QString QFileInfo::bundleName () const
Returns the name of the bundle.
On Mac OS X 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();
This function was introduced in Qt 4.3.
See also isBundle(), filePath(), baseName(), and extension().
bool QFileInfo::caching () const
Returns true if caching is enabled; otherwise returns false.
See also setCaching() and refresh().
QString QFileInfo::canonicalFilePath () const
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, canonicalFilePath() returns an empty string.
See also filePath(), absoluteFilePath(), and dir().
QString QFileInfo::canonicalPath () const
Returns the file's 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, canonicalPath() returns an empty string.
See also path() and absolutePath().
QString QFileInfo::completeBaseName () const
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();
See also fileName(), suffix(), completeSuffix(), and baseName().
QString QFileInfo::completeSuffix () const
Returns the complete suffix 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();
See also fileName(), suffix(), baseName(), and completeBaseName().
QDateTime QFileInfo::created () const
Returns the date and time when the file was created.
On most Unix systems, this function returns the time of the last status change. A status change occurs when the file is created, but it also occurs whenever the user writes or sets inode information (for example, changing the file permissions).
If neither creation time nor "last status change" time are not available, returns the same as lastModified().
See also lastModified() and lastRead().
QDir QFileInfo::dir () const
Returns the path of the object's parent directory as a QDir object.
Note: The QDir returned always corresponds to the object's parent directory, even if the QFileInfo represents a directory.
For each of the following, dir() returns a QDir for "~/examples/191697".
QFileInfo fileInfo1("~/examples/191697/.");
QFileInfo fileInfo2("~/examples/191697/..");
QFileInfo fileInfo3("~/examples/191697/main.cpp");
For each of the following, dir() returns a QDir for ".".
QFileInfo fileInfo4(".");
QFileInfo fileInfo5("..");
QFileInfo fileInfo6("main.cpp");
See also absolutePath(), filePath(), fileName(), isRelative(), and absoluteDir().
bool QFileInfo::exists () const
Returns true if the file exists; otherwise returns false.
Note: If the file is a symlink that points to a non existing file, false is returned.
QString QFileInfo::fileName () const
Returns the name of the file, excluding the path.
Example:
QFileInfo fi("/tmp/archive.tar.gz");
QString name = fi.fileName();
Note that, if this QFileInfo object is given a path ending in a slash, the name of the file is considered empty.
See also isRelative(), filePath(), baseName(), and extension().
QString QFileInfo::filePath () const
Returns the file name, including the path (which may be absolute or relative).
See also absoluteFilePath(), canonicalFilePath(), and isRelative().
QString QFileInfo::group () const
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).
See also groupId(), owner(), and ownerId().
uint QFileInfo::groupId () const
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.
See also group(), owner(), and ownerId().
bool QFileInfo::isAbsolute () const
Returns true if the file path name is absolute, otherwise returns false if the path is relative.
See also isRelative().
bool QFileInfo::isBundle () const
Returns true if this object points to a bundle or to a symbolic link to a bundle on Mac OS X; otherwise returns false.
This function was introduced in Qt 4.3.
See also isDir(), isSymLink(), and isFile().
bool QFileInfo::isDir () const
Returns true if this object points to a directory or to a symbolic link to a directory; otherwise returns false.
See also isFile(), isSymLink(), and isBundle().
bool QFileInfo::isExecutable () const
Returns true if the file is executable; otherwise returns false.
See also isReadable(), isWritable(), and permission().
bool QFileInfo::isFile () const
Returns true if this object points to a file or to a symbolic link to a file. Returns false if the object points to something which isn't a file, such as a directory.
See also isDir(), isSymLink(), and isBundle().
bool QFileInfo::isHidden () const
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 QDir::entryList threats them as shown.
bool QFileInfo::isReadable () const
Returns true if the user can read the file; otherwise returns false.
See also isWritable(), isExecutable(), and permission().
bool QFileInfo::isRelative () const
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 isAbsolute().
bool QFileInfo::isRoot () const
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 returns false.
bool QFileInfo::isSymLink () const
Returns true if this object points to a symbolic link (or to a shortcut on Windows); otherwise returns false.
On Unix (including Mac OS X), opening a symlink effectively opens the link's target. On Windows, it opens 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 isFile(), isDir(), and symLinkTarget().
bool QFileInfo::isWritable () const
Returns true if the user can write to the file; otherwise returns false.
See also isReadable(), isExecutable(), and permission().
QDateTime QFileInfo::lastModified () const
Returns the date and time when the file was last modified.
See also created() and lastRead().
QDateTime QFileInfo::lastRead () const
Returns the date and time when the file was last read (accessed).
On platforms where this information is not available, returns the same as lastModified().
See also created() and lastModified().
bool QFileInfo::makeAbsolute ()
Converts the file's path to an absolute path if it is not already in that form. Returns true to indicate that the path was converted; otherwise returns false to indicate that the path was already absolute.
See also filePath() and isRelative().
QString QFileInfo::owner () const
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).
See also ownerId(), group(), and groupId().
uint QFileInfo::ownerId () const
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).
See also owner(), group(), and groupId().
QString QFileInfo::path () const
Returns the file's path. This doesn't 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(), and isRelative().
bool QFileInfo::permission ( QFile::Permissions permissions ) const
Tests for file permissions. The permissions argument can be several flags of type QFile::Permissions OR-ed together to check for permission combinations.
On systems where files do not have permissions this function always returns true.
Example:
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");
See also isReadable(), isWritable(), and isExecutable().
Returns the complete OR-ed together combination of QFile::Permissions for the file.
void QFileInfo::refresh ()
Refreshes the information about the file, i.e. reads in information from the file system the next time a cached property is fetched.
Note: On Windows CE, there might be a delay for the file system driver to detect changes on the file.
void QFileInfo::setCaching ( bool enable )
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's needed, but generally not later.
Caching is enabled by default.
See also refresh() and caching().
void QFileInfo::setFile ( const QString & file )
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());
QDir::setCurrent("/tmp");
See also isFile(), isRelative(), QDir::setCurrent(), and QDir::isRelativePath().
void QFileInfo::setFile ( const QFile & file )
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 isRelative().
void QFileInfo::setFile ( const QDir & dir, const QString & file )
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 isRelative().
qint64 QFileInfo::size () const
Returns the file size in bytes. If the file does not exist or cannot be fetched, 0 is returned.
See also exists().
QString QFileInfo::suffix () const
Returns the suffix 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();
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 "bashrc").
See also fileName(), completeSuffix(), baseName(), and completeBaseName().
QString QFileInfo::symLinkTarget () const
Returns the absolute path to the file or directory a symlink (or shortcut on Windows) points to, or a an empty string if the object isn't a symbolic link.
This name may not represent an existing file; it is only a string. QFileInfo::exists() returns true if the symlink points to an existing file.
This function was introduced in Qt 4.2.
See also exists(), isSymLink(), isDir(), and isFile().
bool QFileInfo::operator!= ( const QFileInfo & fileinfo )
Returns true if this QFileInfo object refers to a different file than the one specified by fileinfo; otherwise returns false.
See also operator==().
bool QFileInfo::operator!= ( const QFileInfo & fileinfo ) const
This is an overloaded function.
QFileInfo & QFileInfo::operator= ( const QFileInfo & fileinfo )
Makes a copy of the given fileinfo and assigns it to this QFileInfo.
bool QFileInfo::operator== ( const QFileInfo & fileinfo )
Returns true if this QFileInfo object refers to a file in the same location as fileinfo; otherwise returns false.
Note that the result of comparing two empty QFileInfo objects, containing no file references, is undefined.
Warning: This will not compare two different symbolic links pointing to the same file.
Warning: Long and short file names that refer to the same file on Windows are treated as if they referred to different files.
See also operator!=().
bool QFileInfo::operator== ( const QFileInfo & fileinfo ) const
This is an overloaded function.