lyhzzz il y a 3 mois
Parent
commit
ae416655c4

+ 2 - 2
src/main/java/com/fdkankan/fusion/down/FusionDownService.java

@@ -388,7 +388,7 @@ public class FusionDownService {
             if(res.contains(".json") ){
                 res = new File(res).getParentFile().getPath();
             }
-            ShellUtil.yunDownload(res, path  + res);
+            ShellUtil.yunDownload(res, path +"/"+ res);
         }
     }
     public void downResources(String urls,String offPath) {
@@ -408,7 +408,7 @@ public class FusionDownService {
             log.info("downResource文件不存在:{},{}",url,path);
             return;
         }
-        ShellUtil.yunDownload(url,path+url);
+        ShellUtil.yunDownload(url,path+"/"+url);
     }