回答:
以下の例のように、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);