فهرست منبع

负荷率利用小时更新

xushili 2 سال پیش
والد
کامیت
9d38ab7644

+ 2 - 2
src/main/java/com/gyee/frame/common/file/FileZip.java

@@ -64,7 +64,7 @@ public class FileZip {
      */
     public static String zipFiles(List<File> srcFiles, File zipFile) {
         // 判断压缩后的文件存在不,不存在则创建
-        if (!zipFile.exists()) {
+        //if (!zipFile.exists()) {
             try {
                 zipFile.createNewFile();
             } catch (IOException e) {
@@ -107,7 +107,7 @@ public class FileZip {
             } catch (IOException e) {
                 e.printStackTrace();
             }
-        }
+        //}
         return zipFile.getAbsolutePath();
     }
 }

+ 1 - 1
src/main/java/com/gyee/frame/model/config/FilePathConfig.java

@@ -22,7 +22,7 @@ public class FilePathConfig {
             //dataPath = filePath.substring(0, filePath.lastIndexOf("\\"));
             dataPath = filePath+"\\data";
             File file = new File(dataPath + "\\光伏逆变器负荷率利用小时计算");
-            if(!file.exists()) file.mkdir();
+            if(!file.exists()) file.mkdirs();
         }
         return dataPath;
     }