how can I create a temporary folder in java 6?

28.5k Views Asked by At

Possible Duplicate:
Create a temporary directory in Java

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.

4

There are 4 best solutions below

1
On BEST ANSWER

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

File temp = File.createTempFile("folder-name","");
temp.delete();
temp.mkdir();
0
On

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

3
On

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

ie

String dirName = System.getProperty("java.io.tmpdir");
0
On

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