Here you can find the source of isExist(String absPath)
public static Boolean isExist(String absPath)
//package com.java2s; import java.io.File; public class Main { public static Boolean isExist(String absPath) { File f = new File(absPath); return f.exists(); }/*from www.j a va 2 s . c o m*/ }