Is there a standard and reliable way of creating a temporary directory inside a Java application? There’s an entry in Java’s issue database, which has a bit of code in the comments, but I wonder if there is a standard solution to be found in one of the usual libraries (Apache Commons etc.) ?
Share
If you are using JDK 7 use the new Files.createTempDirectory class to create the temporary directory.
Before JDK 7 this should do it:
You could make better exceptions (subclass IOException) if you want.