QSaveFile¶
Synopsis¶
Functions¶
def
cancelWriting
()def
commit
()def
directWriteFallback
()def
setDirectWriteFallback
(enabled)def
setFileName
(name)
Detailed Description¶
QSaveFile
is an I/O device for writing text and binary files, without losing existing data if the writing operation fails.While writing, the contents will be written to a temporary file, and if no error happened,
commit()
will move it to the final file. This ensures that no data at the final file is lost in case an error happens while writing, and no partially-written file is ever present at the final location. Always useQSaveFile
when saving entire documents to disk.
QSaveFile
automatically detects errors while writing, such as the full partition situation, wherewrite()
cannot write all the bytes. It will remember that an error happened, and will discard the temporary file incommit()
.Much like with
QFile
, the file is opened withopen()
. Data is usually read and written usingQDataStream
orQTextStream
, but you can also call theQIODevice
-inherited functionsread()
,readLine()
,readAll()
,write()
.Unlike
QFile
, callingclose()
is not allowed.commit()
replaces it. Ifcommit()
was not called and theQSaveFile
instance is destroyed, the temporary file is discarded.To abort saving due to an application error, call
cancelWriting()
, so that even a call tocommit()
later on will not save.See also
- class PySide2.QtCore.QSaveFile([parent=None])¶
PySide2.QtCore.QSaveFile(name)
PySide2.QtCore.QSaveFile(name, parent)
- param parent:
- param name:
str
Constructs a new file object with the given
parent
.Constructs a new file object with the given
parent
to represent the file with the specifiedname
.
- PySide2.QtCore.QSaveFile.cancelWriting()¶
Cancels writing the new file.
If the application changes its mind while saving, it can call , which sets an error code so that
commit()
will discard the temporary file.Alternatively, it can simply make sure not to call
commit()
.Further write operations are possible after calling this method, but none of it will have any effect, the written file will be discarded.
This method has no effect when direct write fallback is used. This is the case when saving over an existing file in a readonly directory: no temporary file can be created, so the existing file is overwritten no matter what, and cannot do anything about that, the contents of the existing file will be lost.
See also
- PySide2.QtCore.QSaveFile.commit()¶
- Return type:
bool
Commits the changes to disk, if all previous writes were successful.
It is mandatory to call this at the end of the saving operation, otherwise the file will be discarded.
If an error happened during writing, deletes the temporary file and returns
false
. Otherwise, renames it to the finalfileName
and returnstrue
on success. Finally, closes the device.See also
- PySide2.QtCore.QSaveFile.directWriteFallback()¶
- Return type:
bool
Returns
true
if the fallback solution for saving files in read-only directories is enabled.See also
- PySide2.QtCore.QSaveFile.setDirectWriteFallback(enabled)¶
- Parameters:
enabled – bool
Allows writing over the existing file if necessary.
QSaveFile
creates a temporary file in the same directory as the final file and atomically renames it. However this is not possible if the directory permissions do not allow creating new files. In order to preserve atomicity guarantees,open()
fails when it cannot create the temporary file.In order to allow users to edit files with write permissions in a directory with restricted permissions, call with
enabled
set to true, and the following calls toopen()
will fallback to opening the existing file directly and writing into it, without the use of a temporary file. This does not have atomicity guarantees, i.e. an application crash or for instance a power failure could lead to a partially-written file on disk. It also meanscancelWriting()
has no effect, in such a case.Typically, to save documents edited by the user, call (true), and to save application internal files (configuration files, data files, …), keep the default setting which ensures atomicity.
See also
- PySide2.QtCore.QSaveFile.setFileName(name)¶
- Parameters:
name – str
Sets the
name
of the file. The name can have no path, a relative path, or an absolute path.See also
setFileName()
fileName()
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.