Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/js/deno.ts>open

A modern runtime for JavaScript and TypeScript.
Go to Latest
function open
import { open } from "https://deno.land/x/deno@v0.30.0/cli/js/deno.ts";

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

  const file = await Deno.open("/foo/bar.txt");

Parameters

filename: string
optional
mode: OpenMode = [UNSUPPORTED]

Returns

Promise<File>