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

.net应用程序是否有通配符扩展选项?

如何解决《.net应用程序是否有通配符扩展选项?》经验,为你挑选了1个好方法。



1> tggagne..:

在这里我们粗暴的黑客.我喜欢它是递归的.在遇到Windows通配符的缺点后,我可能会决定使用正则表达式,而不是让GetFiles()为我做.

using System.IO;

public static string[] ExpandFilePaths(string[] args)
{
    var fileList = new List();

    foreach (var arg in args)
    {
        var substitutedArg = System.Environment.ExpandEnvironmentVariables(arg);

        var dirPart = Path.GetDirectoryName(substitutedArg);
        if (dirPart.Length == 0)
            dirPart = ".";

        var filePart = Path.GetFileName(substitutedArg);

        foreach (var filepath in Directory.GetFiles(dirPart, filePart))
            fileList.Add(filepath);
    }

    return fileList.ToArray();
}

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