CZT
2024-01-12 fb611e8f45ac022c2d3611f586e85cbdd06dbbc0
src/main/java/com/fzzy/api/utils/FileUtils.java
@@ -96,4 +96,18 @@
      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;
   }
}