Options
All
  • Public
  • Public/Protected
  • All
Menu

Callable

  • writev(fd: number, buffers: ReadonlyArray<ArrayBufferView>, cb: function): void
  • writev(fd: number, buffers: ReadonlyArray<ArrayBufferView>, position: number, cb: function): void
  • Write an array of ArrayBufferViews to the file specified by fd using writev(). position is the offset from the beginning of the file where this data should be written. It is unsafe to use fs.writev() multiple times on the same file without waiting for the callback. For this scenario, use fs.createWriteStream(). On Linux, positional writes don't work when the file is opened in append mode. The kernel ignores the position argument and always appends the data to the end of the file.

    Parameters

    Returns void

  • Parameters

    Returns void

Index

Functions

Functions

__promisify__

  • Parameters

    • fd: number
    • buffers: ReadonlyArray<ArrayBufferView>
    • Optional position: number

    Returns Promise<WriteVResult>

Generated using TypeDoc