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