Skip to main content
Latest
function Deno.readTextFileSync
import { Deno } from "https://deno.land/x/adka_server@0.1.5/deno.d.ts";
const { readTextFileSync } = Deno;

Synchronously reads and returns the entire contents of a file as utf8 encoded string encoded string. Reading a directory returns an empty string.

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

Requires allow-read permission.

Parameters

path: string

Returns

string