Here you can find the source of checkDir(String dirName)
private static boolean checkDir(String dirName)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { private static boolean checkDir(String dirName) { File stats = new File(dirName); if (stats.exists()) { return true; } else {// w ww .jav a2 s . com if (stats.mkdir()) { return true; } else { return false; } } } }