From 4114d380bd594385fa6f10bb36a9eef4d19e8db1 Mon Sep 17 00:00:00 2001
From: kojingeun <diteam.co.kr>
Date: 월, 05 6월 2023 23:33:58 +0900
Subject: [PATCH] Ongoing50 #4517 CF AOI Review 결과 파일 찾기 실패 개선 1. Find Bin File 찾는 Library 변경  - CRT _findfirsti64 / _findnexti64 -> C++17 Filesystem directory_iterator  - 파일 탐색 시간 20k Files(80GB) 1sec 소요

---
 DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp b/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp
index 2055277..ef25ec9 100644
--- a/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp
+++ b/DitGlassRawMessenger/DitGlassRawMessenger/GlassRawCPJT.cpp
@@ -1307,10 +1307,13 @@
 	}
 	// 16   2    STACK_COUNT	// Count of Defect detected step
 	SPRINTRAW(2, "%2d", pDefectData->m_nStackStepCount);
-	// 17   60   STACK_STEP		// Flow(Step) of defect detection
+	// 17   60 -> 400   STACK_STEP		// Flow(Step) of defect detection
 	if (strlen(pDefectData->m_strStackFirst))
 	{
-		SPRINTRAW(60, "%s", pDefectData->m_strStackFirst);
+		/* < KMH 20220712 : #4230 MOD Start > */
+		//SPRINTRAW(60, "%s", pDefectData->m_strStackFirst);
+		SPRINTRAW(400, "%s", pDefectData->m_strStackFirst);
+		/* < KMH 20220712 : #4230 MOD End > */
 	}
 	else
 	{

--
Gitblit v1.9.3