How to check if a file exists or not in Java?


The File class provides exists() method this returns true if a file in the specified path exists else it returns false.

Example

Live Demo

import java.io.File;

public class FileHandling {
   public static void main(String args[]) {
      File file = new File("samplefile");

      if(file.exists()) {
         System.out.println("Given file existed");
      } else {
         System.out.println("Given file does not existed");
      }
   }
}

Output

Given file does not existed

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 30-Jul-2019

291 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements