Java tutorial
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static File tempDir() { return new File(System.getProperty("java.io.tmpdir")); } }