将多个扩展传递给 System.IO.Directory.GetFiles 方法

发布于 2024-11-07 17:15:35 字数 469 浏览 1 评论 0原文

可能的重复:
获取具有多个扩展名的文件

如何为 System.IO.Directory.GetFiles 方法指定多个扩展名?

我已经尝试过了。

string[] files = System.IO.Directory.GetFiles(path, "*.jpg *.png");

string[] files = System.IO.Directory.GetFiles(path, "*.jpg, *.png");

没有成功。

这可能吗?

Possible Duplicate:
GetFiles with multiple extentions

How can I specify multiple extensions for the System.IO.Directory.GetFiles method?

I have tried.

string[] files = System.IO.Directory.GetFiles(path, "*.jpg *.png");

and

string[] files = System.IO.Directory.GetFiles(path, "*.jpg, *.png");

to no success.

Is this even possible?

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

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

发布评论

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

评论(1

如果没结果 2024-11-14 17:15:35

您可以查看以下博客文章

You may checkout the following blog post.

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