Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
method Deno.FsFile.prototype.syncDataSync

Synchronously flushes any pending data operations of the given file stream to disk.

using file = Deno.openSync(
 "my_file.txt",
 { read: true, write: true, create: true },
);
file.writeSync(new TextEncoder().encode("Hello World"));
file.syncDataSync();
console.log(Deno.readTextFileSync("my_file.txt")); // Hello World