Here you can find the source of isFileExist(File file)
public static boolean isFileExist(File file)
//package com.java2s; import java.io.File; public class Main { public static boolean isFileExist(File file) { return file.exists(); }/*from w ww. ja va 2 s. c o m*/ public static boolean isFileExist(File file, File folder) { // File[] files = folder.listFiles(); // String fileName = file.getName(); // for( File f : files ) // { // if( fileName.equals( f.getName() ) ) // { // return true; // } // } // return false; return file.exists(); } }