Logo

Programming-Idioms

  • Scala
  • Js

Idiom #155 Delete file

Delete from filesystem the file having path filepath.

import {unlink} from 'fs/promises'
await unlink(filepath)

This is asynchronous.
Deno.remove(filepath, { recursive: true }).catch((err) => console.error(err));

For Deno runtime. Deno.removeSync is a similar function that is synchronous.
recursive can be set to false, but deleting a non-empty directory will fail.
const fs = require('fs');
try {
  fs.unlinkSync(filepath);
} catch (err) {
  console.error(err);
}

This is synchronous.
with Ada.Directories;
Ada.Directories.Delete_File (filepath);

New implementation...
< >
programming-idioms.org