Here you can find the source of isExistFile(String name)
public static boolean isExistFile(String name)
//package com.java2s; import java.io.File; public class Main { public static boolean isExistFile(String name) { File file = new File(name); return file.exists(); }// w w w .ja v a2 s. c o m }