Here you can find the source of checkDir(String dir, boolean mustExist)
public static void checkDir(String dir, boolean mustExist)
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { public static void checkDir(String dir, boolean mustExist) { File file = new File(dir); if ((mustExist && !file.exists()) || file.isFile()) { throw new IllegalStateException("must be dir"); }//w ww . ja va 2s. co m } }