Comment joindre deux chemins de fichiers en C #?
Comment joindre deux chemins de fichiers en C #?
Réponses:
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
string basePath = @"c:\temp\"; string filePath = @"c:\dev\test.txt"; /* for whatever reason */ string combined = Path.Combine(basePath, filePath);
produit @ "c: \ dev \ test.txt"
System.IO.Path.Combine () est ce dont vous avez besoin.
Path.Combine(path1, path2);