Skip to main content

readTextFileSync

function Deno.readTextFileSync
allow-read
Jump to headingreadTextFileSync(path: string | URL): string

Synchronously reads and returns the entire contents of a file as an UTF-8 decoded string. Reading a directory throws an error.

const data = Deno.readTextFileSync("hello.txt");
console.log(data);

Requires allow-read permission.

Parameters Jump to heading

Jump to headingpath: string | URL

Return Type Jump to heading

string
Back to top