Here you can find the source of mkdirs(File file)
public static void mkdirs(File file)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static void mkdirs(File file) { if (!file.exists()) { file.mkdirs();/*from w w w . ja v a 2s .c o m*/ } } public static void mkdirs(String path) { File dirs = new File(path); if (!dirs.exists()) { dirs.mkdirs(); } } }