如何在C#中join两条path?

如何在C#中join两个文件path?

您必须使用Path.Combine() ,如下例所示:

string basePath = @"c:\temp"; string filePath = "test.txt"; string combinedPath = Path.Combine(basePath, filePath); // produces c:\temp\test.txt 

System.IO.Path.Combine()是你需要的。

 Path.Combine(path1, path2);