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

x/deno/cli/dts/lib.deno.ns.d.ts>Deno.writeFileSync

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.writeFileSync
allow-read
allow-write
import { Deno } from "https://deno.land/x/deno@v1.28.1/cli/dts/lib.deno.ns.d.ts";
const { writeFileSync } = Deno;

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

const encoder = new TextEncoder();
const data = encoder.encode("Hello world\n");
Deno.writeFileSync("hello1.txt", data);  // overwrite "hello1.txt" or create it
Deno.writeFileSync("hello2.txt", data, { create: false });  // only works if "hello2.txt" exists
Deno.writeFileSync("hello3.txt", data, { mode: 0o777 });  // set permissions on new file
Deno.writeFileSync("hello4.txt", data, { append: true });  // add data to the end of the file

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

Parameters

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