private String directoryToStoreFiles;
private String configFilename;
private Encryption encryption;
public ConfigFile() throws OKMException {
encryption = new Encryption();
directoryToStoreFiles = getDirectoryToStoreFiles();
if (directoryToStoreFiles==null) {
directoryToStoreFiles = FileUtil.getWorkingPath() + OPENKM_FOLDER;
File file = new File(directoryToStoreFiles);
if (!file.exists()) {