Este método é usado para excluir um arquivo existente.
Sintaxe
delete(filename)
Parâmetros
Valor de retorno
Nenhum
Por exemplo
-module(helloworld).
-export([start/0]).
start() ->
file:delete("Duplicate.txt").
Resultado
Se o arquivo Duplicate.txt existia, ele será excluído.