Logo

Programming-Idioms

  • Scheme
  • Java
  • Python
  • Pascal

Idiom #155 Delete file

Delete from filesystem the file having path filepath.

import java.io.File;
new File(filepath).delete();
import static java.nio.file.Files.deleteIfExists;
import static java.nio.file.Path.of;
deleteIfExists(of(filepath));
import os
os.remove(filepath)
import pathlib
path = pathlib.Path(_filepath)
path.unlink()
uses SysUtils;
begin
  if DeleteFile(filepath) then
    writeln(filepath,' succesfully deleted.')
  else
    writeln('Error deleting ',filepath);
end.
with Ada.Directories;
Ada.Directories.Delete_File (filepath);

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