Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno/cli/js/deno.ts>write

A modern runtime for JavaScript and TypeScript.
Go to Latest
function write
import { write } from "https://deno.land/x/deno@v0.30.0/cli/js/deno.ts";

Write to the file ID the contents of the array buffer.

Resolves with the number of bytes written.

 const encoder = new TextEncoder();
 const data = encoder.encode("Hello world\n");
 const file = await Deno.open("/foo/bar.txt");
 await Deno.write(file.rid, data);

Parameters

rid: number
p: Uint8Array

Returns

Promise<number>