Here you can find the source of isFileNotExist(String filepath)
public static File isFileNotExist(String filepath)
//package com.java2s; import java.io.File; public class Main { public static File isFileNotExist(String filepath) { File mfile = new File(filepath); if (mfile.exists()) return null; else//from ww w.j a v a 2 s . c om return mfile; } }