Here you can find the source of makeDir(String path)
Parameter | Description |
---|
public static boolean makeDir(String path)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static boolean makeDir(String path) { return new File(path).mkdirs(); }// ww w . j a v a 2s . c om }