为什么" Path.GetFullPath"在网络路径上解析具有相关元素的路径时表现得很奇怪? 试试这个小例子并比较结果:
using System;
using System.IO;
namespace ConsoleApplication1 {
class Program {
static void Main(string[] args) {
Console.WriteLine(Path.GetFullPath(@"C:\Stay\Elim1\Elim2\..\..\SomeFolder")); // yields C:\Stay\SomeFolder
Console.WriteLine(Path.GetFullPath(@"\\Stay\Elim1\Elim2\..\..\SomeFolder")); // yields \\Stay\Elim1\SomeFolder ???
}
}
}
这可能是一个错误,或者可能有一些意义,但我不明白。
(我的机器上没有任何一个或者甚至是它们的部分,所以它只是一个字符串操作)
答案 0 :(得分:7)
当您使用网络路径时,路径的第二部分是共享名称而不是目录。
Console.WriteLine(Path.GetFullPath(@"C:\SomeDir\Dir1\Dir2\..\..\SomeFolder"));
C:\ SomeDir \ SomeFolder
Console.WriteLine(Path.GetFullPath(@"\\Server\ShareName\Dir1\Dir2\..\..\SomeFolder"));
\服务器\共享名\ SomeFolder