Come posso unire due percorsi di file in C #?
Come posso unire due percorsi di file in C #?
Risposte:
Devi usare Path.Combine () come nell'esempio seguente:
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);
produce @ "c: \ dev \ test.txt"
System.IO.Path.Combine () è ciò di cui hai bisogno.
Path.Combine(path1, path2);