+ 1
How can i delete a file ?
Why i can not delete a file by using delete() method in file class?
3 Respostas
+ 4
You should check this out:
http://docs.oracle.com/javase/tutorial/essential/io/delete.html
I can't know what's your exact problem, but maybe this can help you.
0
thanks
0
fileToDelete=new File("location");
fileToDelete.delete();