czt
2024-04-21 51a999d87421497bb7bb25e47965f78261f801c3
src/main/java/com/fzzy/api/utils/FileUtils.java
@@ -96,4 +96,32 @@
      return basePath;
   }
   public String getSnapFilePath(Date date) {
      if (null == date) {
         date = new Date();
      }
      String basePath = configData.getImgPath() + "SNAP/"
            + DateFormatUtils.format(date, "yyyyMM") + "/";
      File file = new File(basePath);
      if (!file.exists()) {
         file.mkdirs();
      }
      return basePath;
   }
   public String getCommonFilePath(Date date) {
      if (null == date)
         date = new Date();
      String basePath = configData.getImgPath() + "COMMON/"
            + DateFormatUtils.format(date, "yyyyMM") + "/";
      File file = new File(basePath);
      if (!file.exists()) {
         file.mkdirs();
      }
      return basePath;
   }
}