gpt4 book ai didi

c# - 使用通配符在文件夹中搜索文件

转载 作者:行者123 更新时间:2023-11-30 19:11:14 26 4
gpt4 key购买 nike

我尝试使用通配符搜索文件。我的代码是:

          string  SearchQuery ='';
List<ATTFile> lstFiles = new List<ATTFile>();
if (Directory.Exists(FilePath))
{
DirectoryInfo dirInfo = new DirectoryInfo(FilePath);//File PAth is not a problem.

foreach (FileInfo file in dirInfo.GetFiles(SearchQuery + "?"))//Want help here
{

ATTFile obj = new ATTFile();
obj.FileName = file.Name;
obj.Folder = file.Directory.ToString();
obj.Size = int.Parse(file.Length.ToString());
obj.Extension = file.Extension;
lstFiles.Add(obj);

}


}

如果我给出完整的文件名,代码就可以工作。例如:在一个目录中,我有以下文件。

and.jpg
asp.jpg
bb.jpg
cc.jpg

使用上面的代码,如果我给出完整的文件名,它的工作意味着 SearchQuery ="and.jpg"。它的工作。但是如果我给 SearchQuery ="a" 我想要一个结果

and.jpg
asp.jpg

所有文件都以 a 开头。是否可以在 GetFiles(SearchQuery + "?") 中使用通配符。谢谢。

最佳答案

使用DirectoryInfo.GetFiles Method (String) , 你可以用它来指定通配符

* - Zero or more characters.

? - Exactly one character.

你可以试试:

dirInfo.GetFiles("a*");

而不是 ? 您可以在查询中使用 * 来获取以 searchquery 开头并以任何其他字符结尾的文件。

关于c# - 使用通配符在文件夹中搜索文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12637323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com