Is there a standard and reliable way of creating a temporary directory inside a Java application? There's an entry in Sun'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.)
|
|
|
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. |
|||||||||||||||||||||
|
|
The Google Guava library has a ton of helpful utilities. One of note here is the Files class. It has a bunch of useful methods including:
This does exactly what you asked for in one line. If you read the documentation here you'll see that the proposed adaptation of File.createTempFile("install", "dir") typically introduces security vulnerabilities. |
|||||||||||||
|
|
If you need a temporary directory for testing and you are using jUnit,
From the documentation:
Ref: http://kentbeck.github.com/junit/javadoc/latest/org/junit/rules/TemporaryFolder.html |
|||||||||||||||||
|
|
Naively written code to solve this problem suffers from race conditions, including several of the answers here. Historically you could think carefully about race conditions and write it yourself, or you could use a third-party library like Google's Guava (as Spina's answer suggested.) Or you could write buggy code. But as of JDK 7, there is good news! The Java standard library itself now provides a properly working (non-racy) solution to this problem. You want java.nio.file.Files#createTempDirectory(). From the documentation:
This effectively resolves the embarrassingly ancient bug report in the Sun bug tracker which asked for just such a function. |
|||
|
|
|
This is the source code to the Guava library's Files.createTempDir(). It's nowhere as complex as you might think:
By default:
|
|||
|
|
|
Do not use Google 'deleteonexit is evil' for more info, but the gist of the problem is:
|
|||||
|
|
This is what I decided to do for my own code:
|
|||||||||||
|
|
Well, "createTempFile" actually creates the file. So why not just delete it first, and then do the mkdir on it? |
|||||
|
|
As of Java 1.7 Example:
|
||||
|
|
|
As discussed in this RFE and its comments, you could call |
|||||||
|
|
This code should work reasonably well:
|
|||||||||
|
|
I like the multiple attempts at creating a unique name but even this solution does not rule out a race condition. Another process can slip in after the test for |
||||
|
|
|
I got the same problem so this is just another answer for those who are interested, and it's similar to one of the above:
And for my application, I decided that to add in a option to clear the temp on exit so I added in a shut-down hook:
The method delete all subdirs and files before deleting the temp, without using the callstack (which is totally optional and you could do it with recursion at this point), but I want to be on the safe side. |
|||
|
|
|
Using |
|||||||||
|