QTemporaryFile Class
The QTemporaryFile class is an I/O device that operates on temporary files. 更多...
头文件: | #include <QTemporaryFile> |
qmake: | QT += core |
基类: | QFile |
Note: All functions in this class are reentrant.
公有函数
QTemporaryFile() | |
QTemporaryFile(const QString &templateName) | |
QTemporaryFile(QObject *parent) | |
QTemporaryFile(const QString &templateName, QObject *parent) | |
~QTemporaryFile() | |
bool | autoRemove() const |
QString | fileTemplate() const |
bool | open() |
void | setAutoRemove(bool b) |
void | setFileTemplate(const QString &name) |
重新实现的公有函数
virtual QString | fileName() const |
- 15 个公有函数继承自 QFile
- 16 个公有函数继承自 QFileDevice
- 43 个公有函数继承自 QIODevice
- 32 个公有函数继承自 QObject
静态公有成员
QTemporaryFile * | createNativeFile(QFile &file) |
QTemporaryFile * | createNativeFile(const QString &fileName) |
重新实现的受保护函数
virtual bool | open(OpenMode flags) |
- 3 个受保护的函数继承自 QFileDevice
- 5 个受保护的函数继承自 QIODevice
- 9 个受保护的函数继承自 QObject
其他继承的成员
- 1 个属性继承自 QObject
- 1 个公有槽函数继承自 QObject
- 6 个信号继承自 QIODevice
- 2 个信号继承自 QObject
- 3 个受保护的函数继承自 QFileDevice
- 5 个受保护的函数继承自 QIODevice
- 9 个受保护的函数继承自 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:
// Within a function/method... QTemporaryFile file; if (file.open()) { // file.fileName() returns the unique file name } // The QTemporaryFile destructor removes the temporary file // as it goes out of scope.
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.
The file name of the temporary file can be found by calling fileName(). Note that this is only defined after the file is first opened; the function returns an empty string before this.
A temporary file will have some static part of the name and some part that is calculated to be unique. The default filename will be determined from QCoreApplication::applicationName() (otherwise qt_temp
) and will be placed into the temporary path as returned by QDir::tempPath(). If you specify your own filename, a relative file path will not be placed in the temporary directory by default, but be relative to the current working directory.
Specified filenames can contain the following template XXXXXX
(six upper case "X" characters), which will be replaced by the auto-generated portion of the filename. Note that the template is case sensitive. If the template is not present in the filename, QTemporaryFile appends the generated part to the filename given.
参见 QDir::tempPath() and QFile.
成员函数
QTemporaryFile::QTemporaryFile()
Constructs a QTemporaryFile using as file template the application name returned by QCoreApplication::applicationName() (otherwise qt_temp
) followed by ".XXXXXX". The file is stored in the system's temporary directory, QDir::tempPath().
参见 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.
参见 open() and fileTemplate().
QTemporaryFile::QTemporaryFile(QObject *parent)
Constructs a QTemporaryFile (with the given parent) using as file template the application name returned by QCoreApplication::applicationName() (otherwise qt_temp
) followed by ".XXXXXX". The file is stored in the system's temporary directory, QDir::tempPath().
参见 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 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.
参见 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.
参见 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.
参见 setAutoRemove() and remove().
[static]
QTemporaryFile *QTemporaryFile::createNativeFile(QFile &file)
If file is not already a native file, then a QTemporaryFile is created in QDir::tempPath(), the contents of file is copied into it, and a pointer to the temporary file is returned. Does nothing and returns 0
if file is already a native file.
For example:
QFile f(":/resources/file.txt"); QTemporaryFile::createNativeFile(f); // Returns a pointer to a temporary file QFile f("/users/qt/file.txt"); QTemporaryFile::createNativeFile(f); // Returns 0
参见 QFileInfo::isNativePath().
[static]
QTemporaryFile *QTemporaryFile::createNativeFile(const QString &fileName)
This is an overloaded function.
Works on the given fileName rather than an existing QFile object.
[virtual]
QString QTemporaryFile::fileName() const
Reimplemented from QFileDevice::fileName().
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.
参见 fileTemplate().
QString QTemporaryFile::fileTemplate() const
Returns the set file template. The default file template will be called qcoreappname.XXXXXX and be placed in QDir::tempPath().
参见 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.
参见 fileName().
[virtual protected]
bool QTemporaryFile::open(OpenMode flags)
Reimplemented from QIODevice::open().
Creates a unique file name for the temporary file, and opens it. You can get the unique name later by calling fileName(). The file is guaranteed to have been created by this function (i.e., it has never existed before).
void QTemporaryFile::setAutoRemove(bool b)
Sets the QTemporaryFile into auto-remove mode if b is true.
Auto-remove is on by default.
参见 autoRemove() and remove().
void QTemporaryFile::setFileTemplate(const QString &name)
Sets the static portion of the file name to name. If the file template contains 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.
参见 fileTemplate().