Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/lib.deno_runtime.d.ts>Deno.open

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.open
import { Deno } from "https://deno.land/x/deno@v0.28.0/cli/js/lib.deno_runtime.d.ts";
const { open } = Deno;

Open a file and return an instance of the File object.

  (async () => {
    const file = await Deno.open("/foo/bar.txt");
  })();

Parameters

filename: string
optional
mode: OpenMode

Returns

Promise<File>