qu'entendez-vous par rejoindre deux chemins? chemin du fichier en deux parties ou deux fichiers différents? si chemin du fichier en deux parties, utilisez System.IO.Path.Combine (chemin1, chemin2). plus d'infos ici [ msdn.microsoft.com/en-us/library/system.io.path.combine.aspx]
TheVillageIdiot
Réponses:
158
Vous devez utiliser Path.Combine () comme dans l'exemple ci-dessous:
Il convient de noter que si "filePath" contient un chemin absolu, Path.Combine ne renvoie que "filePath". string basePath = @"c:\temp\"; string filePath = @"c:\dev\test.txt"; /* for whatever reason */ string combined = Path.Combine(basePath, filePath);produit @ "c: \ dev \ test.txt"
Réponses:
Vous devez utiliser Path.Combine () comme dans l'exemple ci-dessous:
la source
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.
la source