utime method

Future<void> utime(
  1. Object path,
  2. Object atime,
  3. Object mtime
)

Changes the access (atime) and modification (mtime) times of a file system object referenced by path. Given times are either in seconds (UNIX epoch time) or as Date objects.

await Deno.utime("myfile.txt", 1556495550, new Date());

Requires allow-write permission.

Implementation

_i2.Future<void> utime(
  _i2.Object path,
  _i2.Object atime,
  _i2.Object mtime,
) =>
    _i3.promiseToFuture(_i3.callMethod(
      this,
      'utime',
      [
        path,
        atime,
        mtime,
      ],
    ));