Wie verbinde ich zwei Dateipfade in C #?
Wie verbinde ich zwei Dateipfade in C #?
Antworten:
Sie müssen Path.Combine () wie im folgenden Beispiel verwenden:
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);
produziert @ "c: \ dev \ test.txt"
System.IO.Path.Combine () ist das, was Sie brauchen.
Path.Combine(path1, path2);