추론실행 에러로그 추가 #84

Merged
teddy merged 2 commits from feat/infer_dev_260211 into develop 2026-02-23 16:36:26 +09:00
Showing only changes of commit 3683c193d4 - Show all commits

View File

@@ -300,10 +300,12 @@ public class FIleChecker {
String parentPath = path.getParent().toString(); String parentPath = path.getParent().toString();
String fullPath = path.toAbsolutePath().toString(); String fullPath = path.toAbsolutePath().toString();
boolean isValid = boolean isShowHide =
!NameValidator.containsKorean(folderNm) !parentFolderNm.equals("kamco-nfs"); // 폴더 리스트에 kamco-nfs 하위만 나오도록 처리
&& !NameValidator.containsWhitespaceRegex(folderNm) // boolean isValid =
&& !parentFolderNm.equals("kamco-nfs"); // !NameValidator.containsKorean(folderNm)
// && !NameValidator.containsWhitespaceRegex(folderNm)
// && !parentFolderNm.equals("kamco-nfs");
File file = new File(fullPath); File file = new File(fullPath);
int childCnt = getChildFolderCount(file); int childCnt = getChildFolderCount(file);
@@ -317,7 +319,7 @@ public class FIleChecker {
depth, depth,
childCnt, childCnt,
lastModified, lastModified,
isValid); isShowHide);
}) })
.collect(Collectors.toList()); .collect(Collectors.toList());