如何将PC中的本地文件路径转换为网络相对或UNC路径?

时间:2017-09-10 08:01:44

标签: c# vb.net

String machineName = System.Environment.MachineName;
String filePath = @"E:\folder1\folder2\file1";
int a = filePath.IndexOf(System.IO.Path.DirectorySeparatorChar);
filePath = filePath.Substring(filePath.IndexOf(System.IO.Path.DirectorySeparatorChar) +1);
String networdPath = System.IO.Path.Combine(string.Concat(System.IO.Path.DirectorySeparatorChar, System.IO.Path.DirectorySeparatorChar), machineName, filePath);
Console.WriteLine(networdPath);

我使用String.ConcatPath.Combine编写了上述代码以获取网络路径。但这只是一种解决方法,而不是具体的解决方案,可能会失败。 是否有获得网络路径的具体解决方案?

1 个答案:

答案 0 :(得分:1)

您假设您的E:\folder1本地路径被共享为\\mypc\folder1,这通常不是真的,因此我怀疑是否存在执行您想要做的事情的一般方法。

您正在实施您想要实现的目标。您可以从System.IO.Path获得更多帮助;根据输入

中不同类型的路径,查看MSDNPath.GetPathRoot的返回值
string GetNetworkPath(string path)
{
    string root = Path.GetPathRoot(path);

    // validate input, in your case you are expecting a path starting with a root of type "E:\"
    // see Path.GetPathRoot on MSDN for returned values
    if (string.IsNullOrWhiteSpace(root) || !root.Contains(":"))
    {
        // handle invalid input the way you prefer
        // I would throw!
        throw new ApplicationException("be gentle, pass to this function the expected kind of path!");
    }
    path = path.Remove(0, root.Length);
    return Path.Combine(@"\\myPc", path);
}