YYC
2024-11-25 e14fe93dc50e5f7804af1fa1f7e2c40d953fd2b8
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;
   }
}