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

x/xdg/vendor/types/deno.d.ts>Deno.writeTextFileSync

Determine XDG Base Directory paths (OS/platform portable)
Latest
function Deno.writeTextFileSync
import { Deno } from "https://deno.land/x/xdg@v10.6.0/vendor/types/deno.d.ts";
const { writeTextFileSync } = Deno;

Synchronously write string data to the given path, by default creating a new file if needed, else overwriting.

Deno.writeTextFileSync("hello1.txt", "Hello world\n");  // overwrite "hello1.txt" or create it

Requires allow-write permission, and allow-read if options.create is false.

Parameters

path: string | URL
data: string
optional
options: WriteFileOptions