Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.createSync

Creates a file if none exists or truncates an existing file and returns an instance of Deno.FsFile.

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

Requires allow-read and allow-write permissions.

function createSync(path: string | URL): FsFile;
§
createSync(path: string | URL): FsFile
[src]

§Parameters

§
path: string | URL
[src]

§Return Type