xiaofei пре 4 дана
родитељ
комит
a5485d9c3f

+ 0 - 4
teachcloud-common/src/main/java/com/qmth/teachcloud/common/util/FileUtil.java

@@ -623,10 +623,6 @@ public class FileUtil {
      * @param zipFileName      压缩zip文件路径+文件名
      */
     public static void downloadEncryptZip(HttpServletResponse response, File downloadPathFile, String zipFileName, String password) {
-        for (File file : downloadPathFile.listFiles()) {
-            log.info("压缩前各文件名:{}", file.getAbsolutePath());
-        }
-
         if (StringUtils.isBlank(password)) {
             password = SystemConstant.ZIP_ENCRYPT_PWD;
         }

+ 0 - 2
teachcloud-common/src/main/java/com/qmth/teachcloud/common/util/Zip4jUtil.java

@@ -183,8 +183,6 @@ public class Zip4jUtil {
                 zipFile = new ZipFile(scrPath);
             }
 
-
-
             // 3. 添加文件夹到zip
             File folderToAdd = new File(destPath);
             if (folderToAdd.isDirectory()) {