web-dev-qa-db-fra.com

Comment joindre deux chemins en C #?

Comment joindre deux chemins de fichiers en C #?

94
Geo

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
150
Jose Basilio

System.IO.Path.Combine () est ce dont vous avez besoin.

Path.Combine(path1, path2);
31