ID EN
OS

RWF_APPEND

Python 3.11

Provide a per-write equivalent of the O_APPEND os.open() flag. This flag is meaningful only for os.pwritev(), and its effect applies only to the data range written by the system call. The offset argument does not affect the write operation; the data is always appended to the end of the file. However, if the offset argument is -1, the current file offset is updated.

Syntax

PYTHON
os.RWF_APPEND

See Also

O_APPEND os.open() os.pwritev() Availability