Java tutorial
//package com.java2s; //License from project: Open Source License import java.io.File; import java.io.IOException; public class Main { public static File ensureDirExists(File dir) throws IOException { if (!(dir.isDirectory() || dir.mkdirs())) { throw new IOException("Couldn't create directory '" + dir + "'"); } return dir; } }