public void setStorageSubfolder(String storageSubfolder) {

    if (storageSubfolder == null || storageSubfolder.equals("")) {
      Date currentDate = new Date(System.currentTimeMillis());
      storageSubfolder = "syncmod_" + FileCommons.md5(currentDate.toString());
    }

    this.storageSubfolder = storageSubfolder;
  }