Here you can find the source of makeDir(String dir)
public static void makeDir(String dir)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static void makeDir(String dir) { File folder = new File(dir); if (!folder.exists() || !folder.isDirectory()) { folder.mkdirs();// w w w . ja va 2 s .c o m } } }