Here you can find the source of makeTempDir(String prefix, String suffix)
static File makeTempDir(String prefix, String suffix) throws IOException
//package com.java2s; //License from project: Apache License import java.io.File; import java.io.IOException; public class Main { static File makeTempDir(String prefix, String suffix) throws IOException { final File instrDir = File.createTempFile(prefix, suffix); instrDir.delete();/*from w ww .j av a 2 s. com*/ instrDir.mkdir(); return instrDir; } }