gpt4 book ai didi

c# - 在 C# 中列出目录时如何过滤文件

转载 作者:可可西里 更新时间:2023-11-01 11:37:59 24 4
gpt4 key购买 nike

我正在尝试过滤方法的输出,因此只会返回带有“FF-”前缀的文件。

我的代码如下:

 DirectoryInfo dinfo = new DirectoryInfo(@"C:\Windows\system32\tasks");
FileInfo[] Files = dinfo.GetFiles("*.*");
foreach (FileInfo file in Files)
{
listBox1.Items.Add(file.Name);
}

最佳答案

像这样?

FileInfo[] Files = dinfo.GetFiles("FF-*.*");

Directory.GetFiles Method

引用:

* - Zero or more characters.  
? - Exactly zero or one character.

For example, the searchPattern string "*t" searches for all names in path ending with the letter "t". The searchPattern string "s*" searches for all names in path beginning with the letter "s".

关于c# - 在 C# 中列出目录时如何过滤文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6479326/

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