YYC
2024-12-05 a63ccbac7d05e8f7592fd2040275770d59f67c5f
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;
   }
}