Here you can find the source of isExist(String path)
public static boolean isExist(String path)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static boolean isExist(String path) { return new File(path).exists(); }/* w w w. j a v a 2s.c om*/ }