Function futimes

  • Change the file system timestamps of the object referenced by the supplied file descriptor. See utimes.

    Parameters

    Returns void

    Since

    v0.4.2

    See

  • Change the file system timestamps of the object referenced by the supplied file descriptor. See utimes.

    Parameters

    Returns Promise<void>

    Since

    v0.4.2

    See

Methods

  • Asynchronously change file timestamps of the file referenced by the supplied file descriptor.

    Parameters

    • fd: number

      A file descriptor.

    • atime: TimeLike

      The last access time. If a string is provided, it will be coerced to number.

    • mtime: TimeLike

      The last modified time. If a string is provided, it will be coerced to number.

    Returns Promise<void>

Generated using TypeDoc