Delete If Exists - Java File Path IO

Java examples for File Path IO:File delete

Description

Delete If Exists

Demo Code

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
  public static void main(String[] args) throws Exception {
    Path sourceFile = Paths.get("C:/home/docs/users.txt");
    Files.deleteIfExists(sourceFile);
  }//from   w w w .j  a v a2  s.  c  o m

}

Related Tutorials