vote up 4 vote down star

I have a test for a create DB method and I need a temp directory to put it in. The directory will be removed after the test is done. I tried using File.createTempFile(), like so:

tempDir = File.createTempFile("install", "dir");
tempDir.mkdir();

But tempDir is already exists as a file. How do I create a temp directory as opposed to a file?

flag

56% accept rate
See also: stackoverflow.com/questions/617414/… – jmanning2k Sep 10 at 14:03

3 Answers

vote up 7 vote down check

Well, "createTempFile" actually creates the file. So why not just delete it first, and then do the mkdir on it?

link|flag
You should always check the return value for mkdir(). If that is false then it means the directory already existed. This can cause security problems, so consider whether this should raise an error in your application or not. – sjbotha Jul 7 at 14:18
vote up 1 vote down

This code should work reasonably well:

public static File createTempDir() {
    final String baseTempPath = System.getProperty("java.io.tmpdir");

    Random rand = new Random();
    int randomInt = 1 + rand.nextInt();

    File tempDir = new File(baseTempPath + File.separator + "tempDir" + randomInt);
    if (tempDir.exists() == false) {
        tempDir.mkdir();
    }

    tempDir.deleteOnExit();

    return tempDir;
}
link|flag
1  
What if the directory already exists and you don't have read/write access to it or what if it's a regular file? You also have a race condition there. – Jeremy Huiskamp May 3 at 18:07
vote up 2 vote down

As discussed in this RFE and its comments, you could call tempDir.delete() first. Or you could use System.getProperty("java.io.tmpdir") and create a directory there. Either way, you should remember to call tempDir.deleteOnExit(), or the file won't be deleted after you're done.

link|flag
Isn't this property called "java.io.tmpdir", not "...temp"? See java.sun.com/j2se/1.4.2/… – Andrew Swan Dec 17 '08 at 21:43
Quite so. I should have verified before repeating what I read. – mmyers Dec 18 '08 at 16:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.