gpt4 book ai didi

c# - 快速检索文件夹和所有子文件夹中的文件名列表

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

我需要获取所有 Word 文档的列表。 *.doc 和 *.docx 存储在基于 Windows 的文件夹中,具有许多子文件夹和子文件夹等...

Searching for a file with C#有一个有效的答案,它已有 2 年历史,搜索 1500 个文件需要 10 秒(将来可能有 10,000 个或更多)。我将发布我的代码,它基本上是上述链接的副本。有没有人有更好的解决方案?

DateTime dt = DateTime.Now;
DirectoryInfo dir = new DirectoryInfo(MainFolder);
List<FileInfo> matches =
new List<FileInfo>(dir.GetFiles("*.doc*",SearchOption.AllDirectories));
TimeSpan ts = DateTime.Now-dt;
MessageBox.Show(matches.Count + " matches in " + ts.TotalSeconds + " seconds");

最佳答案

您可以使用 Directory.EnumerateFiles而不是 GetFiles .这具有将文件作为 IEnumerable<T> 返回的优点,这使您可以立即开始处理结果集(而不是等待返回整个列表)。

如果您只是计算文件数量或列出所有文件,这可能无济于事。但是,如果您可以对结果进行处理和/或过滤,尤其是如果您可以在其他线程中进行任何操作,速度会明显加快。

来自文档:

The EnumerateFiles and GetFiles methods differ as follows: When you use EnumerateFiles, you can start enumerating the collection of names before the whole collection is returned; when you use GetFiles, you must wait for the whole array of names to be returned before you can access the array. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.

关于c# - 快速检索文件夹和所有子文件夹中的文件名列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10604830/

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