if (directory.mkdir()) {
LOGGER.info("{} is created.", directory.getPath());
}
}
if (directory.exists() && !directory.canWrite()) {
throw new ConfigurationException(String.format(" ngrinder home directory %s is not writable.", directory),
null);
}
this.directory = directory;
}