ID EN
OS

pwritev

Python 3.11

Write the buffers contents to file descriptor fd at a offset offset, leaving the file offset unchanged. buffers must be a sequence of bytes-like objects. Buffers are processed in array order. Entire contents of the first buffer is written before proceeding to the second, and so on.

Syntax

PYTHON
os.pwritev(fd, buffers, offset, flags=0, /)

See Also

bytes-like objects RWF_DSYNC RWF_SYNC RWF_APPEND sysconf() os.writev() os.pwrite() Availability