Here you can find the source of mkdirs(String filePath)
Parameter | Description |
---|---|
filePath | a parameter |
public static synchronized boolean mkdirs(String filePath)
//package com.java2s; import java.io.*; public class Main { /**// ww w .ja v a2 s. c om * mkdirs for a file; * * @param filePath * @return */ public static synchronized boolean mkdirs(String filePath) { File file = new File(filePath); if (!file.exists()) { String parent = file.getParent(); return new File(parent).mkdirs(); } else { return false; } } }