Here you can find the source of checkDirs(String dir)
private static void checkDirs(String dir)
//package com.java2s; import java.io.File; public class Main { private static void checkDirs(String dir) { File file = new File(dir); if (!file.exists()) { file.mkdirs();//from w w w.j av a2 s.c o m } } }