QFileDevice#
The QFileDevice
class provides an interface for reading from and writing to open files. More…
Inherited by: QSaveFile, QFile, QTemporaryFile
Synopsis#
Functions#
def
error
()def
fileTime
(time)def
flush
()def
handle
()def
map
(offset, size[, flags=QFileDevice.MemoryMapFlag.NoOptions])def
setFileTime
(newDate, fileTime)def
unmap
(address)def
unsetError
()
Virtual functions#
def
fileName
()def
permissions
()def
resize
(sz)def
setPermissions
(permissionSpec)
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
QFileDevice
is the base class for I/O devices that can read and write text and binary files and resources . QFile
offers the main functionality, QFileDevice
serves as a base class for sharing functionality with other file devices such as QSaveFile
, by providing all the operations that can be done on files that have been opened by QFile
or QSaveFile
.
- class PySide6.QtCore.QFileDevice#
PySide6.QtCore.QFileDevice(parent)
- Parameters:
parent –
PySide6.QtCore.QObject
- PySide6.QtCore.QFileDevice.FileError#
This enum describes the errors that may be returned by the error()
function.
Constant
Description
QFileDevice.NoError
No error occurred.
QFileDevice.ReadError
An error occurred when reading from the file.
QFileDevice.WriteError
An error occurred when writing to the file.
QFileDevice.FatalError
A fatal error occurred.
QFileDevice.ResourceError
Out of resources (e.g., too many open files, out of memory, etc.)
QFileDevice.OpenError
The file could not be opened.
QFileDevice.AbortError
The operation was aborted.
QFileDevice.TimeOutError
A timeout occurred.
QFileDevice.UnspecifiedError
An unspecified error occurred.
QFileDevice.RemoveError
The file could not be removed.
QFileDevice.RenameError
The file could not be renamed.
QFileDevice.PositionError
The position in the file could not be changed.
QFileDevice.ResizeError
The file could not be resized.
QFileDevice.PermissionsError
The file could not be accessed.
QFileDevice.CopyError
The file could not be copied.
- PySide6.QtCore.QFileDevice.FileTime#
This enum is used by the fileTime()
and setFileTime()
functions.
Constant
Description
QFileDevice.FileAccessTime
When the file was most recently accessed (e.g. read or written to).
QFileDevice.FileBirthTime
When the file was created (may not be not supported on UNIX).
QFileDevice.FileMetadataChangeTime
When the file’s metadata was last changed.
QFileDevice.FileModificationTime
When the file was most recently modified.
See also
- PySide6.QtCore.QFileDevice.Permission#
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
(inherits enum.Flag
) This enum is used by the permission() function to report the permissions and ownership of a file. The values may be OR-ed together to test multiple permissions and ownership values.
Constant
Description
QFileDevice.ReadOwner
The file is readable by the owner of the file.
QFileDevice.WriteOwner
The file is writable by the owner of the file.
QFileDevice.ExeOwner
The file is executable by the owner of the file.
QFileDevice.ReadUser
The file is readable by the user.
QFileDevice.WriteUser
The file is writable by the user.
QFileDevice.ExeUser
The file is executable by the user.
QFileDevice.ReadGroup
The file is readable by the group.
QFileDevice.WriteGroup
The file is writable by the group.
QFileDevice.ExeGroup
The file is executable by the group.
QFileDevice.ReadOther
The file is readable by others.
QFileDevice.WriteOther
The file is writable by others.
QFileDevice.ExeOther
The file is executable by others.
Warning
Because of differences in the platforms supported by Qt, the semantics of ReadUser, WriteUser and ExeUser are platform-dependent: On Unix, the rights of the owner of the file are returned and on Windows the rights of the current user are returned. This behavior might change in a future Qt version.
Note
On NTFS file systems, ownership and permissions checking is disabled by default for performance reasons. To enable it, include the following line:
Q_CORE_EXPORT = extern()
Permission checking is then turned on and off by incrementing and decrementing qt_ntfs_permission_lookup
by 1.
qt_ntfs_permission_lookup++ # turn checking on qt_ntfs_permission_lookup-- # turn it off again
Note
Since this is a non-atomic global variable, it is only safe to increment or decrement qt_ntfs_permission_lookup
before any threads other than the main thread have started or after every thread other than the main thread has ended.
- PySide6.QtCore.QFileDevice.FileHandleFlag#
(inherits enum.Flag
) This enum is used when opening a file to specify additional options which only apply to files and not to a generic QIODevice
.
Constant
Description
QFileDevice.AutoCloseHandle
The file handle passed into
open()
should be closed byclose()
, the default behavior is that close just flushes the file and the application is responsible for closing the file handle. When opening a file by name, this flag is ignored as Qt always owns the file handle and must close it.QFileDevice.DontCloseHandle
If not explicitly closed, the underlying file handle is left open when the
QFile
object is destroyed.
- PySide6.QtCore.QFileDevice.MemoryMapFlag#
(inherits enum.Flag
) This enum describes special options that may be used by the map()
function.
Constant
Description
QFileDevice.NoOptions
No options.
QFileDevice.MapPrivateOption
The mapped memory will be private, so any modifications will not be visible to other processes and will not be written to disk. Any such modifications will be lost when the memory is unmapped. It is unspecified whether modifications made to the file made after the mapping is created will be visible through the mapped memory. This enum value was introduced in Qt 5.4.
Returns the file error status.
The I/O device status returns an error code. For example, if open()
returns false
, or a read/write operation returns -1, this function can be called to find out the reason why the operation failed.
See also
- PySide6.QtCore.QFileDevice.fileName()#
- Return type:
str
Returns the name of the file. The default implementation in QFileDevice
returns a null string.
Returns the file time specified by time
. If the time cannot be determined return QDateTime() (an invalid date time).
See also
setFileTime()
FileTime
isValid()
- PySide6.QtCore.QFileDevice.flush()#
- Return type:
bool
Flushes any buffered data to the file. Returns true
if successful; otherwise returns false
.
- PySide6.QtCore.QFileDevice.handle()#
- Return type:
int
Returns the file handle of the file.
This is a small positive integer, suitable for use with C library functions such as fdopen()
and fcntl()
. On systems that use file descriptors for sockets (i.e. Unix systems, but not Windows) the handle can be used with QSocketNotifier
as well.
If the file is not open, or there is an error, handle() returns -1.
See also
- PySide6.QtCore.QFileDevice.map(offset, size[, flags=QFileDevice.MemoryMapFlag.NoOptions])#
- Parameters:
offset – int
size – int
flags –
MemoryMapFlags
- Return type:
PyObject
Maps size
bytes of the file into memory starting at offset
. A file should be open for a map to succeed but the file does not need to stay open after the memory has been mapped. When the QFile
is destroyed or a new file is opened with this object, any maps that have not been unmapped will automatically be unmapped.
The mapping will have the same open mode as the file (read and/or write), except when using MapPrivateOption
, in which case it is always possible to write to the mapped memory.
Any mapping options can be passed through flags
.
Returns a pointer to the memory or None
if there is an error.
See also
- PySide6.QtCore.QFileDevice.permissions()#
- Return type:
Permissions
Returns the complete OR-ed together combination of QFile::Permission for the file.
See also
- PySide6.QtCore.QFileDevice.resize(sz)#
- Parameters:
sz – int
- Return type:
bool
Sets the file size (in bytes) sz
. Returns true
if the resize succeeds; false otherwise. If sz
is larger than the file currently is, the new bytes will be set to 0; if sz
is smaller, the file is simply truncated.
Warning
This function can fail if the file doesn’t exist.
See also
size()
- PySide6.QtCore.QFileDevice.setFileTime(newDate, fileTime)#
- Parameters:
newDate –
PySide6.QtCore.QDateTime
fileTime –
FileTime
- Return type:
bool
Sets the file time specified by fileTime
to newDate
, returning true if successful; otherwise returns false.
- PySide6.QtCore.QFileDevice.setPermissions(permissionSpec)#
- Parameters:
permissionSpec –
Permissions
- Return type:
bool
Sets the permissions for the file to the permissions
specified. Returns true
if successful, or false
if the permissions cannot be modified.
Warning
This function does not manipulate ACLs, which may limit its effectiveness.
See also
- PySide6.QtCore.QFileDevice.unmap(address)#
- Parameters:
address – str
- Return type:
bool
Unmaps the memory address
.
Returns true
if the unmap succeeds; false otherwise.
See also
- PySide6.QtCore.QFileDevice.unsetError()#
Sets the file’s error to NoError
.
See also