Qt:Документация 4.3.2/qtemporaryfile

Материал из Wiki.crossplatform.ru

Версия от 09:17, 14 ноября 2008; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QTemporaryFile Class Reference
[модуль QtCore ]

The QTemporaryFile class is an I/O device that operates on temporary files. More...

 #include <QTemporaryFile>

Inherits QFile.

Note: All the functions in this class are reentrant.

[править] Открытые функции

  • 21 открытых функций унаследованных от QFile
  • 32 открытых функций унаследованных от QIODevice
  • 29 открытых функций унаследованных от QObject

[править] Статические открытые члены

  • 14 статических открытых члена унаследованных от QFile
  • 5 статических открытых члена унаследованных от QObject

[править] Дополнительные унаследованные члены

  • 1 свойство унаследованное от QObject
  • 1 открытый слот унаследованный от QObject
  • 3 сигнала унаследованных от QIODevice
  • 1 сигнал унаследованный от QObject
  • 5 защищенных функций унаследованных от QIODevice
  • 7 защищенных функций унаследованных от QObject

[править] Подробное описание

The QTemporaryFile class is an I/O device that operates on temporary files.

QTemporaryFile is used to create unique temporary files safely. The file itself is created by calling open(). The name of the temporary file is guaranteed to be unique (i.e., you are guaranteed to not overwrite an existing file), and the file will subsequently be removed upon destruction of the QTemporaryFile object. This is an important technique that avoids data corruption for applications that store data in temporary files. The file name is either auto-generated, or created based on a template, which is passed to QTemporaryFile's constructor.

Example:

 {
     QTemporaryFile file;
     if (file.open()) {
         // file.fileName() returns the unique file name
     }
 
     // the QTemporaryFile destructor removes the temporary file
 }

Reopening a QTemporaryFile after calling close() is safe. For as long as the QTemporaryFile object itself is not destroyed, the unique temporary file will exist and be kept open internally by QTemporaryFile.

A temporary file will have some static part of the name and some part that is calculated to be unique. The default filename qt_temp will be placed into the temporary path as returned by QDir::tempPath().

See also QDir::tempPath() and QFile.


[править] Описание функций-членов

[править]
QTemporaryFile::QTemporaryFile ()

Constructs a QTemporaryFile in QDir::tempPath(), using the file template "qt_temp.XXXXXX". The file is stored in the system's temporary directory.

See also setFileTemplate() and QDir::tempPath().

[править]
QTemporaryFile::QTemporaryFile ( const QString & templateName )

Constructs a QTemporaryFile with a template filename of templateName. Upon opening the temporary file this will be used to create a unique filename. If the templateName does not contain XXXXXX it will automatically be appended and used as the dynamic portion of the filename.

If templateName is a relative path, the path will be relative to the current working directory. You can use QDir::tempPath() to construct templateName if you want use the system's temporary directory.

See also open() and fileTemplate().

[править]
QTemporaryFile::QTemporaryFile ( QObject * parent )

Constructs a QTemporaryFile (with the given parent) in QDir::tempPath(), using the file template "qt_temp.XXXXXX".

See also setFileTemplate().

[править]
QTemporaryFile::QTemporaryFile ( const QString & templateName, QObject * parent )

Constructs a QTemporaryFile with a template filename of templateName and the specified parent. Upon opening the temporary file this will be used to create a unique filename. If the templateName does end in XXXXXX it will automatically be appended and used as the dynamic portion of the filename.

If templateName is a relative path, the path will be relative to the current working directory. You can use QDir::tempPath() to construct templateName if you want use the system's temporary directory.

See also open() and fileTemplate().

[править]
QTemporaryFile::~QTemporaryFile ()

Destroys the temporary file object, the file is automatically closed if necessary and if in auto remove mode it will automatically delete the file.

See also autoRemove().

[править]
bool QTemporaryFile::autoRemove () const

Returns true if the QTemporaryFile is in auto remove mode. Auto-remove mode will automatically delete the filename from disk upon destruction. This makes it very easy to create your QTemporaryFile object on the stack, fill it with data, read from it, and finally on function return it will automatically clean up after itself.

Auto-remove is on by default.

See also setAutoRemove() and remove().

[править]
QTemporaryFile * QTemporaryFile::createLocalFile ( QFile & file ) [static]

Creates and returns a local temporary file whose contents are a copy of the contents of the given file.

[править]
QTemporaryFile * QTemporaryFile::createLocalFile ( const QString & fileName ) [static]

This is an overloaded member function, provided for convenience.

Works on the given fileName rather than an existing QFile object.

[править]
QString QTemporaryFile::fileName () const

Returns the complete unique filename backing the QTemporaryFile object. This string is null before the QTemporaryFile is opened, afterwards it will contain the fileTemplate() plus additional characters to make it unique.

See also fileTemplate().

[править]
QString QTemporaryFile::fileTemplate () const

Returns the set file template. The default file template will be called qt_temp and be placed in QDir::tempPath().

See also setFileTemplate().

[править]
bool QTemporaryFile::open ()

A QTemporaryFile will always be opened in QIODevice::ReadWrite mode, this allows easy access to the data in the file. This function will return true upon success and will set the fileName() to the unique filename used.

See also fileName().

[править]
void QTemporaryFile::setAutoRemove ( bool b )

Sets the QTemporaryFile into auto-remove mode if b is true.

Auto-remove is on by default.

See also autoRemove() and remove().

[править]
void QTemporaryFile::setFileTemplate ( const QString & name )

Sets the static portion of the file name to name. If the file template ends in XXXXXX that will automatically be replaced with the unique part of the filename, otherwise a filename will be determined automatically based on the static portion specified.

If name contains a relative file path, the path will be relative to the current working directory. You can use QDir::tempPath() to construct name if you want use the system's temporary directory.

See also fileTemplate().


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2