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