Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QFileInfo Class Reference
[QtCore module]

The QFileInfo class provides system-independent file information. More...

#include <QFileInfo>

Note: All the functions in this class are reentrant.

Public Types

Public Functions


Detailed Description

The QFileInfo class provides system-independent file information.

QFileInfo provides information about a file's name and position (path) in the file system, its access rights and whether it is a directory or symbolic link, etc. The file's 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 "src/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's 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.

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's caching and force it to access the file system every time you request information from it call setCaching(false).

The file's type is obtained with isFile(), isDir() and isSymLink(). The readLink() function provides the name of the file the symlink points to.

Elements of the file's name can be extracted with path() and fileName(). The fileName()'s parts can be extracted with baseName() and extension().

The file's dates are returned by created(), lastModified() and lastRead(). Information about the file's access permissions is obtained with isReadable(), isWritable() and isExecutable(). The file's ownership is available from owner(), ownerId(), group() and groupId(). You can examine a file's permissions and ownership in a single statement using the permission() function.

See also QDir and QFile.


Member Function Documentation

QFileInfo::QFileInfo ()

Constructs a new empty QFileInfo.

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.

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 filePath(), fileName(), isRelative(), and dir().

QString QFileInfo::absoluteFilePath () const

Returns the 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/'.

This function returns the same as filePath(), unless isRelative() is true.

If the QFileInfo is empty it returns QDir::currentPath().

This function can be time consuming under Unix (in the order of milliseconds).

See also isRelative() and filePath().

QString QFileInfo::absolutePath () const

Returns the file's path absolute path. This doesn't include the file name.

See also dir(), filePath(), fileName(), isRelative(), and path().

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();  // base = "archive"

See also fileName(), suffix(), completeSuffix(), and completeBaseName().

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, i.e. a path without symbolic links or redundant "." or ".." elements.

On systems that do not have symbolic links this function will always return the same string that absoluteFilePath() returns. If the canonical path does not exist (normally due to dangling symbolic links) canonicalFilePath() returns an empty string.

See also filePath() and absoluteFilePath().

QString QFileInfo::canonicalPath () const

Returns the canonical path, i.e. a path without symbolic links or redundant "." or ".." elements.

On systems that do not have symbolic links this function will always return the same string that absolutePath() returns. If the canonical path does not exist (normally due to dangling symbolic links) canonicalPath() returns an empty string.

See also 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();  // base = "archive.tar"

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();  // ext = "tar.gz"

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 file's path as a QDir object.

See also dirPath(), filePath(), fileName(), isRelative(), and absoluteDir().

bool QFileInfo::exists () const

Returns true if the file exists; otherwise returns false.

QString QFileInfo::fileName () const

Returns the name of the file, excluding the path.

Example:

    QFileInfo fi("/tmp/archive.tar.gz");
    QString name = fi.fileName();                // name = "archive.tar.gz"

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 isRelative() and absoluteFilePath().

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::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() and isSymLink().

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. Returns false if the object points to something which isn't a file, such as a directory.

See also isDir() and isSymLink().

bool QFileInfo::isHidden () const

Returns true if this is a `hidden' file; otherwise returns false.

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.

See also isFile(), isDir(), and readLink().

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 already absolute, nothing is done.

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.

See also dir(), filePath(), fileName(), isRelative(), and absolutePath().

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().

QFile::Permissions QFileInfo::permissions () const

Returns the complete OR-ed together combination of QFile::Permissions for the file.

QString QFileInfo::readLink () const

Returns the name 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.

See also exists(), isSymLink(), isDir(), and isFile().

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.

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());
    // 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 isFile(), isRelative(), QDir::setCurrent(), and QDir::isRelativePath().

void QFileInfo::setFile ( const QFile & file )

This is an overloaded member function, provided for convenience. It behaves essentially like the above 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 member function, provided for convenience. It behaves essentially like the above 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, or 0 if the file does not exist or if the size is 0 or if the size cannot be fetched.

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();  // ext = "gz"

See also fileName(), completeSuffix(), baseName(), and completeBaseName().

bool QFileInfo::operator!= ( const QFileInfo & fileinfo )

Returns true if the QFileInfo refers to a different file to the one specified by fileinfo; otherwise returns false.

See also operator==().

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 the QFileInfo refers to a file in the same location as the other fileinfo; otherwise returns false.

Warning: This will not compare two different symbolic links pointing to the same file.

See also operator!=().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  2. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  5. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  6. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
Page suivante

Le Qt Quarterly au hasard

Logo

La reconnaissance des gestes de souris

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.0
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web