fs.readSync(fd, buffer[, options])
fd
<integer>buffer
<Buffer> | <TypedArray> | <DataView>options
<Object>- 返回: <number>
返回 bytesRead
的数量。
与上面的 fs.readSync
函数类似,此版本采用可选的 options
对象。
如果未指定 options
对象,则默认使用上述值。
有关详细信息,请参阅此 API 的异步版本的文档:fs.read()
。
fd
<integer>buffer
<Buffer> | <TypedArray> | <DataView>options
<Object>- Returns: <number>
Returns the number of bytesRead
.
Similar to the above fs.readSync
function, this version takes an optional options
object.
If no options
object is specified, it will default with the above values.
For detailed information, see the documentation of the asynchronous version of
this API: fs.read()
.