Read from a file specified by fd and write to an array of ArrayBufferViews
using readv().
position is the offset from the beginning of the file from where data
should be read. If typeof position !== 'number', the data will be read
from the current position.
The callback will be given three arguments: err, bytesRead, andbuffers. bytesRead is how many bytes were read from the file.
If this method is invoked as its util.promisify() ed version, it returns
a promise for an Object with bytesRead and buffers properties.
Read from a file specified by
fd
and write to an array ofArrayBufferView
s usingreadv()
.position
is the offset from the beginning of the file from where data should be read. Iftypeof position !== 'number'
, the data will be read from the current position.The callback will be given three arguments:
err
,bytesRead
, andbuffers
.bytesRead
is how many bytes were read from the file.If this method is invoked as its
util.promisify()
ed version, it returns a promise for anObject
withbytesRead
andbuffers
properties.Since
v13.13.0, v12.17.0