W3cubDocs

/Deno

Deno.create

Creates a file if none exists or truncates an existing file and resolves to an instance of Deno.File.

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

Requires allow-read and allow-write permissions.

function create(path: string | URL): Promise<File>;
create(path: string | URL): Promise<File>

Parameters

path: string | URL

Return Type

Promise<File>

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.create