当前位置:  开发笔记 > 编程语言 > 正文

C#中的PathCanonicalize等价物

如何解决《C#中的PathCanonicalize等价物》经验,为你挑选了2个好方法。

与C#中的PathCanonicalize相同的是什么?

使用:我需要好好猜测两个文件路径是否引用同一个文件(没有磁盘访问).我的典型方法是通过一些过滤器(如MakeAbsolute和PathCanonicalize)抛出它,然后进行不区分大小写的比较.



1> Greg Dean..:

又快又脏:

在过去,我从路径字符串创建了一个FileInfo对象,然后使用了FullName属性.这将删除所有.. \和.\'.

当然你可以互操作:

 [DllImport("shlwapi", EntryPoint="PathCanonicalize")]
    private static extern bool PathCanonicalize(
        StringBuilder lpszDst,
        string lpszSrc
    );



2> Paul William..:

3解决方案:

最佳情况,您100%确定调用进程将具有对文件系统的完全访问权限. CAVEAT:生产盒的许可可能很棘手

    public static string PathCombineAndCanonicalize1(string path1, string path2)
    {
        string combined = Path.Combine(path1, path2);
        combined = Path.GetFullPath(combined);
        return combined;
    }

但是,我们并不总是自由的.通常你需要在未经许可的情况下进行字符串运算.有一个本地的呼吁. CAVEAT:转向本地电话

    public static string PathCombineAndCanonicalize2(string path1, string path2)
    {
        string combined = Path.Combine(path1, path2);
        StringBuilder sb = new StringBuilder(Math.Max(260, 2 * combined.Length));
        PathCanonicalize(sb, combined);
        return sb.ToString();
    }

    [DllImport("shlwapi.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern bool PathCanonicalize([Out] StringBuilder dst, string src);

第三种策略是欺骗CLR.Path.GetFullPath()在虚拟路径上运行得很好,所以只要确保你总是给它一个.你可以做的是用虚假的UNC路径换掉根,调用GetFullPath(),然后重新交换真实的 .CAVEAT:这可能需要在代码审查中出售硬盘

    public static string PathCombineAndCanonicalize3(string path1, string path2)
    {
        string originalRoot = string.Empty;

        if (Path.IsPathRooted(path1))
        {
            originalRoot = Path.GetPathRoot(path1);
            path1 = path1.Substring(originalRoot.Length);
        }

        string fakeRoot = @"\\thiscantbe\real\";
        string combined = Path.Combine(fakeRoot, path1, path2);
        combined = Path.GetFullPath(combined);
        combined = combined.Substring(fakeRoot.Length);
        combined = Path.Combine(originalRoot, combined);
        return combined;
    }

推荐阅读
kikokikolove
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有