czt
2024-04-23 f55b2623f09b0b902f991c701c67a2a6f2577057
src/main/java/com/fzzy/api/utils/FileUtils.java
@@ -110,4 +110,18 @@
      }
      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;
   }
}