Check if a file exists in Java
Description
The following code shows how to check if a file exists.
Example
/* w ww . j a v a 2 s .c o m*/
import java.io.File;
public class Main {
public static void main(String[] a) {
File myFile = new File("C:" + File.separator + "jdk1.5.0" + File.separator, "File.java");
System.out.println(myFile.exists());
}
}
The code above generates the following result.