Here you can find the source of makeTemporaryDirectory(String dir)
public static void makeTemporaryDirectory(String dir)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static void makeTemporaryDirectory(String dir) { new File(dir).mkdirs(); }/* w w w . ja v a 2 s . c om*/ }