Java File.delete()
Syntax
File.delete() has the following syntax.
public boolean delete()
Example
In the following code shows how to use File.delete() method.
//from www . j ava 2 s . c om
import java.io.File;
public class Main {
public static void main(String[] args) {
// create new file
File f = new File("test.txt");
// tries to delete a non-existing file
boolean bool = f.delete();
System.out.println("File deleted: " + bool);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.io »
Java Tutorial »
java.io »