HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Code
Input
Run
const file_path = 'intro.txt' // Deno remove file asynchronous (non-block) await Deno.remove(file_path); // Deno remove file synchronous (blocking way) Deno.removeSync(file_path);
Related Examples
Deno Example Append to File With writeFileStr() Append
Deno Example Read File With readFile()
Deno Example Read File With open()