English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Este método é usado para excluir arquivos existentes.
delete(filename)
filename −Nome do arquivo a ser excluído e o destino.
None
-module(helloworld). -export([start/0]). start() -> file:delete("Duplicate.txt").
Se o arquivoDuplicate.txtExiste, será excluído.