// Create folders if they do not exist
for(String folderPath : folders) {
File folder = new File(folderPath) ;
boolean exists = folder.exists() || folder.mkdir() ;
if (!exists || !folder.isDirectory()) {
throw new FolderCreationException(folder) ;
}// if
}// for
}// ensureWorkSpace()