os.pread(fd, buffersize, offset)
Read from a file descriptor, fd, at a position of offset. It will read up to buffersize number of bytes. The file offset remains unchanged.
Availability: Unix.
New in version 3.3.
os.pread(fd, buffersize, offset)
Read from a file descriptor, fd, at a position of offset. It will read up to buffersize number of bytes. The file offset remains unchanged.
Availability: Unix.
New in version 3.3.
Please login to continue.