Comment joindre deux chemins de fichiers en C #?
Vous devez utiliser Path.Combine () comme dans l'exemple ci-dessous:
string basePath = @"c:\temp";
string filePath = "test.txt";
string combinedPath = Path.Combine(basePath, filePath);
// produces c:\temp\test.txt
System.IO.Path.Combine () est ce dont vous avez besoin.
Path.Combine(path1, path2);