I'm doing an agenda in java for the uni :) and I do not get that in one of the options that I have of menu that is to erase the data.txt was deleted I have tried couple of things that have happened to me and seen many tutorials but I do not get this has been the last code tried I hope you can help me
public void clearConsole() {
File fichero = new File("data.txt");
if (fichero.delete())
System.out.println("El fichero ha sido borrado satisfactoriamente");
else
System.out.println("El fichero no pudó ser borrado");
}