Java tutorial
//package com.java2s; import java.io.File; import java.io.IOException; public class Main { public static boolean create(File file) throws IOException { if (file.exists()) { return true; } File parent = file.getParentFile(); parent.mkdirs(); return file.createNewFile(); } }