Java IO Tutorial - 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  w  ww.  java  2  s  .c  o m


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.