Here you can find the source of makeDirs(String strBottomFoldName, String strFoldName)
private static boolean makeDirs(String strBottomFoldName, String strFoldName)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { private static boolean makeDirs(String strBottomFoldName, String strFoldName) { boolean blnResult = true; File newFold = new File(strBottomFoldName, strFoldName); if (!newFold.exists() && !newFold.mkdirs()) { blnResult = false;// w w w . j a va 2 s . c o m } return blnResult; } }