openSync method

FsFile openSync(
  1. Object path, [
  2. OpenOptions? options
])

Synchronously open a file and return an instance of {@linkcode Deno.FsFile}. The file does not need to previously exist if using the create or createNew open options. It is the caller's responsibility to close the file when finished with it.

const file = Deno.openSync("/foo/bar.txt", { read: true, write: true });
// Do work with file
file.close();

Requires allow-read and/or allow-write permissions depending on options.

Implementation

_i4.FsFile openSync(
  _i2.Object path, [
  _i4.OpenOptions? options,
]) =>
    _i3.callMethod(
      this,
      'openSync',
      [
        path,
        options ?? _i6.undefined,
      ],
    );