|
@@ -914,6 +914,9 @@ public class MultiSimulationProjectServiceImpl implements MultiSimulationProject
|
|
|
ResponseBodyVO<List<String>> list1 = fileDownService.list(minioParameter);
|
|
|
List<String> info = list1.getInfo();
|
|
|
for (String s: info) {
|
|
|
+ if (s.contains("/log/") || s.contains("/result/")){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
String fileName = null;
|
|
|
String zipPath = null;
|
|
|
if (s.contains("/")) {
|
|
@@ -921,6 +924,9 @@ public class MultiSimulationProjectServiceImpl implements MultiSimulationProject
|
|
|
}else {
|
|
|
fileName = s.substring(s.lastIndexOf("\\") + 1);
|
|
|
}
|
|
|
+ if (fileName.equals(".csv")){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
zipPath = multiDownloadTaskTempPath + projectId + File.separator + task.getId() + File.separator + fileName;
|
|
|
String substring = s.substring(s.lastIndexOf(".") + 1);
|
|
|
if (StringUtils.equals(substring, "mp4")){
|