|
@@ -436,13 +436,12 @@ public class CaseDownService {
|
|
|
if(res.contains(".json") || res.contains(".shp") || res.contains(".obj")){
|
|
|
res = new File(res).getParentFile().getPath();
|
|
|
}
|
|
|
- File file = new File(path + "/oss/" + res);
|
|
|
- if(file.isDirectory()){
|
|
|
- log.info("---------------------"+file.getParentFile().getPath());
|
|
|
- ShellUtil.yunDownload(res, file.getParentFile().getPath());
|
|
|
+ String desPath = path + "/oss/" + res;
|
|
|
+ if(!desPath.contains(".")){
|
|
|
+ ShellUtil.yunDownload(res, new File(desPath).getParentFile().getPath());
|
|
|
return;
|
|
|
}
|
|
|
- ShellUtil.yunDownload(res, path +"/oss/" + res);
|
|
|
+ ShellUtil.yunDownload(res, desPath);
|
|
|
}
|
|
|
}
|
|
|
public void downResources(Integer caseId,String urls) {
|