Here you can find the source of checkDirectoryExists(String path)
public static boolean checkDirectoryExists(String path)
//package com.java2s; import java.io.File; public class Main { public static boolean checkDirectoryExists(String path) { boolean exists; File directory = new File(path); exists = directory.exists() || directory.mkdirs(); return exists; }// w w w. j av a 2 s . co m }