BAEL-3651: Make sure the directory is always initially empty

This commit is contained in:
Krzysiek 2019-12-15 20:09:01 +01:00
parent fccdc24ad5
commit 0c61a12d88
1 changed files with 8 additions and 2 deletions

View File

@ -156,10 +156,16 @@ public class FileClassUnitTest {
private static File makeDir(String name) {
File directory = new File(name);
directory.mkdir();
if (directory.isDirectory()) {
// If the directory already exists, make sure we create it 'from scratch', i.e. all the files inside are deleted first
if (directory.exists()) {
removeDir(directory);
}
if (directory.mkdir()) {
return directory;
}
throw new RuntimeException("'" + name + "' not made!");
}