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  · 

QAbstractFileEngine Class Reference
[QtCore module]

The QAbstractFileEngine class provides an abstraction for accessing the filesystem. More...

 #include <QAbstractFileEngine>

Inherited by QFSFileEngine.

Note: All the functions in this class are reentrant.

This class was introduced in Qt 4.1.

Public Types

  • enum FileFlag { ReadOwnerPerm, WriteOwnerPerm, ExeOwnerPerm, ReadUserPerm, ..., LocalDiskFlag }
  • flags FileFlags
  • enum FileName { DefaultName, BaseName, PathName, AbsoluteName, ..., CanonicalPathName }
  • enum FileOwner { OwnerUser, OwnerGroup }
  • enum FileTime { CreationTime, ModificationTime, AccessTime }

Public Functions

  • virtual bool caseSensitive () const
  • virtual bool close ()
  • virtual bool copy ( const QString & newName )
  • virtual QStringList entryList ( QDir::Filters filters, const QStringList & filterNames ) const
  • QFile::FileError error () const
  • QString errorString () const
  • virtual FileFlags fileFlags ( FileFlags type = FileInfoAll ) const
  • virtual QString fileName ( FileName file = DefaultName ) const
  • virtual QDateTime fileTime ( FileTime time ) const
  • virtual bool flush ()
  • virtual int handle () const
  • virtual bool isRelativePath () const
  • virtual bool isSequential () const
  • virtual bool link ( const QString & newName )
  • virtual bool mkdir ( const QString & dirName, bool createParentDirectories ) const
  • virtual bool open ( QIODevice::OpenMode mode )
  • virtual QString owner ( FileOwner owner ) const
  • virtual uint ownerId ( FileOwner owner ) const
  • virtual qint64 pos () const
  • virtual qint64 read ( char * data, qint64 maxlen )
  • virtual qint64 readLine ( char * data, qint64 maxlen )
  • virtual bool remove ()
  • virtual bool rename ( const QString & newName )
  • virtual bool rmdir ( const QString & dirName, bool recurseParentDirectories ) const
  • virtual bool seek ( qint64 offset )
  • virtual void setFileName ( const QString & file )
  • virtual bool setPermissions ( uint perms )
  • virtual bool setSize ( qint64 size )
  • virtual qint64 size () const
  • virtual qint64 write ( const char * data, qint64 len )

Static Public Members

  • QAbstractFileEngine * create ( const QString & fileName )

Protected Functions


Detailed Description

The QAbstractFileEngine class provides an abstraction for accessing the filesystem.

The QDir, QFile, and QFileInfo classes all make use of a QAbstractFileEngine internally. If you create your own QAbstractFileEngine subclass (and register it with Qt by creating a QAbstractFileEngineHandler subclass), your file engine will be used when the path is one that your file engine handles.

A QAbstractFileEngine refers to one file or one directory. If the referent is a file, the setFileName(), rename(), and remove() functions are applicable. If the referent is a directory the mkdir(), rmdir(), and entryList() functions are applicable. In all cases the caseSensitive(), isRelativePath(), fileFlags(), ownerId(), owner(), and fileTime() functions are applicable.

A QAbstractFileEngine subclass can be created to do synchronous network I/O based file system operations, local file system operations, or to operate as a resource system to access file based resources.

See also QAbstractFileEngineHandler.


Member Type Documentation

enum QAbstractFileEngine::FileFlag
flags QAbstractFileEngine::FileFlags

The permissions and types of a file, suitable for OR'ing together.

ConstantValueDescription
QAbstractFileEngine::ReadOwnerPerm0x4000The owner of the file has permission to read it.
QAbstractFileEngine::WriteOwnerPerm0x2000The owner of the file has permission to write to it.
QAbstractFileEngine::ExeOwnerPerm0x1000The owner of the file has permission to execute it.
QAbstractFileEngine::ReadUserPerm0x0400The current user has permission to read the file.
QAbstractFileEngine::WriteUserPerm0x0200The current user has permission to write to the file.
QAbstractFileEngine::ExeUserPerm0x0100The current user has permission to execute the file.
QAbstractFileEngine::ReadGroupPerm0x0040Members of the current user's group have permission to read the file.
QAbstractFileEngine::WriteGroupPerm0x0020Members of the current user's group have permission to write to the file.
QAbstractFileEngine::ExeGroupPerm0x0010Members of the current user's group have permission to execute the file.
QAbstractFileEngine::ReadOtherPerm0x0004All users have permission to read the file.
QAbstractFileEngine::WriteOtherPerm0x0002All users have permission to write to the file.
QAbstractFileEngine::ExeOtherPerm0x0001All users have permission to execute the file.
QAbstractFileEngine::LinkType0x10000The file is a link to another file (or link) in the file system (i.e. not a file or directory).
QAbstractFileEngine::FileType0x20000The file is a regular file to the file system (i.e. not a link or directory)
QAbstractFileEngine::DirectoryType0x40000The file is a directory in the file system (i.e. not a link or file).
QAbstractFileEngine::HiddenFlag0x0100000The file is hidden.
QAbstractFileEngine::ExistsFlag0x0400000The file actually exists in the file system.
QAbstractFileEngine::RootFlag0x0800000The file or the file pointed to is the root of the filesystem.
QAbstractFileEngine::LocalDiskFlag0x0200000The file resides on the local disk and can be passed to standard file functions.

The FileFlags type is a typedef for QFlags<FileFlag>. It stores an OR combination of FileFlag values.

See also fileFlags() and setFileName().

enum QAbstractFileEngine::FileName

These values are used to request a file name in a particular format.

ConstantValueDescription
QAbstractFileEngine::DefaultName0The same filename that was passed to the QAbstractFileEngine.
QAbstractFileEngine::BaseName1The name of the file excluding the path.
QAbstractFileEngine::PathName2The path to the file excluding the base name.
QAbstractFileEngine::AbsoluteName3The absolute path to the file (including the base name).
QAbstractFileEngine::AbsolutePathName4The absolute path to the file (excluding the base name).
QAbstractFileEngine::LinkName5The full file name of the file that this file is a link to. (This will be empty if this file is not a link.)
QAbstractFileEngine::CanonicalName6Often very similar to LinkName. Will return the true path to the file.
QAbstractFileEngine::CanonicalPathName7Same as CanonicalName, excluding the base name.

See also fileName() and setFileName().

enum QAbstractFileEngine::FileOwner

ConstantValueDescription
QAbstractFileEngine::OwnerUser0The user who owns the file.
QAbstractFileEngine::OwnerGroup1The group who owns the file.

See also owner(), ownerId(), and setFileName().

enum QAbstractFileEngine::FileTime

These are used by the fileTime() function.

ConstantValueDescription
QAbstractFileEngine::CreationTime0When the file was created.
QAbstractFileEngine::ModificationTime1When the file was most recently modified.
QAbstractFileEngine::AccessTime2When the file was most recently accessed (e.g. read or written to).

See also setFileName().


Member Function Documentation

QAbstractFileEngine::QAbstractFileEngine ()   [protected]

Constructs a new QAbstractFileEngine that does not refer to any file or directory.

See also setFileName().

QAbstractFileEngine::~QAbstractFileEngine ()   [virtual]

Destroys the QAbstractFileEngine.

bool QAbstractFileEngine::caseSensitive () const   [virtual]

Should return true if the underlying file system is case-sensitive; otherwise return false.

This virtual function must be reimplemented by all subclasses.

bool QAbstractFileEngine::close ()   [virtual]

Closes the file, returning true if successful; otherwise returns false.

The default implementation always returns false.

bool QAbstractFileEngine::copy ( const QString & newName )   [virtual]

Copies the contents of this file to a file with the name newName. Returns true on success; otherwise, false is returned.

QAbstractFileEngine * QAbstractFileEngine::create ( const QString & fileName )   [static]

Creates and returns a QAbstractFileEngine suitable for processing fileName.

You should not need to call this function; use QFile, QFileInfo or QDir directly instead.

See also QAbstractFileEngineHandler.

QStringList QAbstractFileEngine::entryList ( QDir::Filters filters, const QStringList & filterNames ) const   [virtual]

Requests that a list of all the files matching the filters list based on the filterNames in the file engine's directory are returned.

Should return an empty list if the file engine refers to a file rather than a directory, or if the directory is unreadable or does not exist or if nothing matches the specifications.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

QFile::FileError QAbstractFileEngine::error () const

Returns the QFile::FileError that resulted from the last failed operation. If QFile::UnspecifiedError is returned, QFile will use its own idea of the error status.

See also setError(), QFile::FileError, and errorString().

QString QAbstractFileEngine::errorString () const

Returns the human-readable message appropriate to the current error reported by error(). If no suitable string is available, an empty string is returned.

See also error().

FileFlags QAbstractFileEngine::fileFlags ( FileFlags type = FileInfoAll ) const   [virtual]

This function should return the set of OR'd flags that are true for the file engine's file, and that are in the type's OR'd members.

In your reimplementation you can use the type argument as an optimization hint and only return the OR'd set of members that are true and that match those in type; in other words you can ignore any members not mentioned in type, thus avoiding some potentially expensive lookups or system calls.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

QString QAbstractFileEngine::fileName ( FileName file = DefaultName ) const   [virtual]

Return the file engine's current file name in the format specified by file.

If you don't handle some FileName possibilities, return the file name set in setFileName() when an unhandled format is requested.

This virtual function must be reimplemented by all subclasses.

See also setFileName() and FileName.

QDateTime QAbstractFileEngine::fileTime ( FileTime time ) const   [virtual]

If time is CreationTime, return when the file was created. If time is ModificationTime, return when the file was most recently modified. If time is AccessTime, return when the file was most recently accessed (e.g. read or written). If the time cannot be determined return QDateTime() (an invalid date time).

This virtual function must be reimplemented by all subclasses.

See also setFileName(), QDateTime, QDateTime::isValid(), and FileTime.

bool QAbstractFileEngine::flush ()   [virtual]

Flushes the open file, returning true if successful; otherwise returns false.

The default implementation always returns false.

int QAbstractFileEngine::handle () const   [virtual]

Returns the native file handle for this file engine. This handle must be used with care; its value and type are platform specific, and using it will most likely lead to non-portable code.

bool QAbstractFileEngine::isRelativePath () const   [virtual]

Return true if the file referred to by this file engine has a relative path; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

bool QAbstractFileEngine::isSequential () const   [virtual]

Returns true if the file is a sequential access device; returns false if the file is a direct access device.

Operations involving size() and seek(int) are not valid on sequential devices.

bool QAbstractFileEngine::link ( const QString & newName )   [virtual]

Creates a link from the file currently specified by fileName() to newName. What a link is depends on the underlying filesystem (be it a shortcut on Windows or a symbolic link on Unix). Returns true if successful; otherwise returns false.

bool QAbstractFileEngine::mkdir ( const QString & dirName, bool createParentDirectories ) const   [virtual]

Requests that the directory dirName be created. If createParentDirectories is true, then any sub-directories in dirName that don't exist must be created. If createParentDirectories is false then any sub-directories in dirName must already exist for the function to succeed. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName(), rmdir(), and isRelativePath().

bool QAbstractFileEngine::open ( QIODevice::OpenMode mode )   [virtual]

Opens the file in the specified mode. Returns true if the file was successfully opened; otherwise returns false.

The mode is an OR combination of QIODevice::OpenMode and QIODevice::HandlingMode values.

QString QAbstractFileEngine::owner ( FileOwner owner ) const   [virtual]

If owner is OwnerUser return the name of the user who owns the file. If owner is OwnerGroup return the name of the group that own the file. If you can't determine the owner return QString().

This virtual function must be reimplemented by all subclasses.

See also ownerId(), setFileName(), and FileOwner.

uint QAbstractFileEngine::ownerId ( FileOwner owner ) const   [virtual]

If owner is OwnerUser return the ID of the user who owns the file. If owner is OwnerGroup return the ID of the group that own the file. If you can't determine the owner return -2.

This virtual function must be reimplemented by all subclasses.

See also owner(), setFileName(), and FileOwner.

qint64 QAbstractFileEngine::pos () const   [virtual]

Returns the current file position.

This is the position of the data read/write head of the file.

qint64 QAbstractFileEngine::read ( char * data, qint64 maxlen )   [virtual]

Reads a number of characters from the file into data. At most maxlen characters will be read.

Returns -1 if a fatal error occurs, or 0 if there are no bytes to read.

qint64 QAbstractFileEngine::readLine ( char * data, qint64 maxlen )   [virtual]

This function reads one line, terminated by a '\n' character, from the file info data. At most maxlen characters will be read. The end-of-line character is included.

bool QAbstractFileEngine::remove ()   [virtual]

Requests that the file is deleted from the file system. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName() and rmdir().

bool QAbstractFileEngine::rename ( const QString & newName )   [virtual]

Requests that the file be renamed to newName in the file system. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

bool QAbstractFileEngine::rmdir ( const QString & dirName, bool recurseParentDirectories ) const   [virtual]

Requests that the directory dirName is deleted from the file system. When recurseParentDirectories is true, then any empty parent-directories in dirName must also be deleted. If recurseParentDirectories is false, only the dirName leaf-node should be deleted. In most file systems a directory cannot be deleted using this function if it is non-empty. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName(), remove(), mkdir(), and isRelativePath().

bool QAbstractFileEngine::seek ( qint64 offset )   [virtual]

Sets the file position to the given offset. Returns true if the position was successfully set; otherwise returns false.

The offset is from the beginning of the file, unless the file is sequential.

See also isSequential().

void QAbstractFileEngine::setError ( QFile::FileError error, const QString & errorString )   [protected]

Sets the error type to error, and the error string to errorString. Call this function to set the error values returned by the higher-level classes.

See also QFile::error(), QIODevice::errorString(), and QIODevice::setErrorString().

void QAbstractFileEngine::setFileName ( const QString & file )   [virtual]

Sets the file engine's file name to file. This file name is the file that the rest of the virtual functions will operate on.

This virtual function must be reimplemented by all subclasses.

See also fileName() and rename().

bool QAbstractFileEngine::setPermissions ( uint perms )   [virtual]

Requests that the file's permissions be set to perms. The argument perms will be set to the OR-ed together combination of QAbstractFileEngine::FileInfo, with only the QAbstractFileEngine::PermsMask being honored. If the operations succceeds return true; otherwise return false;

This virtual function must be reimplemented by all subclasses.

See also size().

bool QAbstractFileEngine::setSize ( qint64 size )   [virtual]

Requests that the file be set to size size. If size is larger than the current file then it is filled with 0's, if smaller it is simply truncated. If the operations succceeds return true; otherwise return false;

This virtual function must be reimplemented by all subclasses.

See also size().

qint64 QAbstractFileEngine::size () const   [virtual]

Returns the size of the file.

See also setSize().

qint64 QAbstractFileEngine::write ( const char * data, qint64 len )   [virtual]

Writes len bytes from data to the file. Returns the number of characters written on success; otherwise returns -1.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 64
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le Qt Developer Network au hasard

Logo

Comment fermer une application

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. 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.2
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