vote up 3 vote down star

Duplicate: stackoverflow.com/questions/375910

Is there a way of creating a temporary folder in java ? I know of File's static method createTempFile, but this will only give me a temporary file.

flag

Why isn't this question flagged as duplicate? Brian Agnew has posted the relevant links. – alphazero May 3 at 21:06

4 Answers

vote up 4 vote down check

I've never seen a good solution for this, but this is how I've done it.

File temp = File.createTempFile(...);
temp.delete();
temp.mkdir();
link|flag
This is an interesting approach. I didn't think about it this way. – Geo May 3 at 19:28
vote up 6 vote down

I would check out this past question in SO for a solution. Or this one!

link|flag
vote up 4 vote down

Any reason you can't use the directory defined by the java.io.tmpdir property?

ie

String dirName = System.getProperty("java.io.tmpdir");
link|flag
'Temporary file' from createTempFile is automatically deleted when JVM exits. I think OP is asking for this kind of directory, so using existing tmpdir directory won't make it. (I needed something similar for writing unit tests, and used createTempFile+delete+mkdir and created only 'temporary' files within this directory -- JVM can then do the cleanup, if I remember correctly) – Peter Štibraný May 3 at 17:17
Ok, it's not deleted automatically .. you need to ask JVM first to do so (by deleteOnExit) – Peter Štibraný May 3 at 17:20
vote up 3 vote down

I write my own utility classes for creating temporary directories and for disposing them when they are not anymore needed. For example like this.

link|flag

Your Answer

Get an OpenID
or

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