Checking File Or Directory in the System in Java Program

  1. import java.io.*;  
  2.   
  3. public class FileOrDirectoryExists{  
  4.     public static void main(String args[]){  
  5.         File file=new File("Any file name or directory whether exists or not");  
  6.         boolean exists = file.exists();  
  7.         if (!exists) {  
  8.             // It returns false if File or directory does not exist  
  9.             System.out.println("the file or directory you are searching does not exist : " + exists);  
  10.                   
  11.         }else{  
  12.             // It returns true if File or directory exists  
  13.             System.out.println("the file or directory you are searching does exist : " + exists);  
  14.         }  
  15.     }