如何获取文件/文件夹列表作为 IEnumerable 而不是数组

发布于 2024-08-29 20:58:19 字数 148 浏览 2 评论 0原文

如何获取文件/文件夹列表作为 IEnumerable 而不是数组?

我想这样做的原因是有许多文件夹,其中有 20,000 多个文件,我需要循环遍历所有这些文件,但不想等待它们被编译成数组。但只想一次浏览一个。

我也使用 .net 3.5 而不是 v4

how to get a list of files / folders as an IEnumerable and not an array?

the reason I want to do this is a have many folders with 20,000+ files in them, and i need to loop through all of them but do not want to wait for them to be compiled into an array. but just want to go through one at a time.

also i'm using .net 3.5 not v4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云柯 2024-09-05 20:58:19

很遗憾您不在 .net 4 上 - 看起来他们添加了此功能< /a>.

除此之外,我无法提供任何代码,因为我没有这样做的经验,但也许 P/Invoke 使用 FindFirstFile/FindNextFile

编辑:
稍微谷歌一下就发现了Code Project 上的一些代码

It's too bad you're not on .net 4 - looks like they added this functionality.

Aside from that, I can't provide any code as I have no experience doing this, but maybe P/Invoke wrapping some C code using FindFirstFile/FindNextFile?

EDIT:
A little googling turned up some code on Code Project.

落墨 2024-09-05 20:58:19

我非常确定 Mono 有一个用于此目的的 API,并且您可以将 mono dll 包含在您的 .Net 3.5 应用程序中。我将尝试挖掘精确的库和语法。

您的另一个选择是使用 Reflector 并尝试向后移植新的 .Net 4 功能。

I'm pretty sure Mono has an API for this, and you can include the mono dll's in your .Net 3.5 application. I'll try and dig up the exacy library and syntax.

Your other option is to use Reflector and try to back port the new .Net 4 functionality.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文