Added FileUtils.createTempFolderIn(folder) method

This commit is contained in:
Cristian Maglie 2015-02-27 14:47:38 +01:00 committed by Federico Fissore
parent a8b29d48a5
commit 48ad7ed769
1 changed files with 6 additions and 1 deletions

View File

@ -83,7 +83,12 @@ public class FileUtils {
}
public static File createTempFolder() throws IOException {
File tmpFolder = new File(System.getProperty("java.io.tmpdir"), "arduino_" + new Random().nextInt(1000000));
return createTempFolderIn(new File(System.getProperty("java.io.tmpdir")));
}
public static File createTempFolderIn(File parent) throws IOException {
File tmpFolder = new File(parent, "arduino_"
+ new Random().nextInt(1000000));
if (!tmpFolder.mkdir()) {
throw new IOException("Unable to create temp folder " + tmpFolder);
}