import { Deno } from "https://deno.land/x/xdg@v10.5.1/vendor/types/deno.d.ts";
const { writeTextFile } = Deno;
Asynchronously write string data
to the given path
, by default creating a new file if needed,
else overwriting.
await Deno.writeTextFile("hello1.txt", "Hello world\n"); // overwrite "hello1.txt" or create it
Requires allow-write
permission, and allow-read
if options.create
is false
.