삽질하다 도저히 문제 파악이 안돼서 opcUaManager로 분리 테스트 중
This commit is contained in:
@@ -66,7 +66,7 @@ namespace OpcPks.Core.Services
|
||||
{
|
||||
await ProcessReferencesAsync(result.References, level);
|
||||
|
||||
byte[] cp = result.ContinuationPoint;
|
||||
byte[]? cp = result.ContinuationPoint;
|
||||
while (cp != null && cp.Length > 0)
|
||||
{
|
||||
// ✅ ByteStringCollection을 사용하여 라이브러리 표준 인자 타입 일치화
|
||||
@@ -122,7 +122,7 @@ namespace OpcPks.Core.Services
|
||||
try
|
||||
{
|
||||
// 디렉토리가 없으면 생성
|
||||
string dir = Path.GetDirectoryName(filePath);
|
||||
string? dir = Path.GetDirectoryName(filePath);
|
||||
if (!string.IsNullOrEmpty(dir) && !Directory.Exists(dir))
|
||||
{
|
||||
Directory.CreateDirectory(dir);
|
||||
|
||||
Reference in New Issue
Block a user