Here you can find the source of isFileExist(String folder, String fileName)
public static boolean isFileExist(String folder, String fileName)
//package com.java2s; import java.io.File; public class Main { public static boolean isFileExist(String folder, String fileName) { boolean bool = false; bool = new File(folder, fileName).exists(); return bool; }/*from w w w . j a va 2 s .com*/ public static boolean isFileExist(String fileName) { boolean bool = false; bool = new File(fileName).exists(); return bool; } }