Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ruby

Idiom #155 Delete file

Delete from filesystem the file having path filepath.

File.delete(filepath)

Raises an exception on any error.
with Ada.Directories;
Ada.Directories.Delete_File (filepath);

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