답변:
아래 예제와 같이 Path.Combine () 을 사용해야 합니다.
string basePath = @"c:\temp";
string filePath = "test.txt";
string combinedPath = Path.Combine(basePath, filePath);
// produces c:\temp\test.txt
string basePath = @"c:\temp\"; string filePath = @"c:\dev\test.txt"; /* for whatever reason */ string combined = Path.Combine(basePath, filePath);
생성 @ "c : \ dev \ test.txt"
System.IO.Path.Combine () 이 필요합니다.
Path.Combine(path1, path2);