是否可以为多种扩展类型提供文件过滤器?

发布于 2024-08-31 09:27:11 字数 503 浏览 5 评论 0原文

我使用标准的 Windows FileDialog 来允许用户选择一些文件。我想过滤只输出我感兴趣的文件类型(我们称它们为 *.a*.b)。有没有办法在不使用 *.* 的情况下做到这一点?我已尝试以下操作,但它根本无法匹配任何文件:

this->openFileDialog1->DefaultExt = L"*.a,*.b";
this->openFileDialog1->FileName = L"openFileDialog1";
this->openFileDialog1->Filter = L"My Data Files (*.a,*.b)|*.a,*.b";

I'm using a standard Windows FileDialog to allow the user to select some files. I'd like to filter out only the file types I'm interested in though (lets call them *.a and *.b). Is there any way to do this without using *.*? I've tried the following but it fails to match any files at all:

this->openFileDialog1->DefaultExt = L"*.a,*.b";
this->openFileDialog1->FileName = L"openFileDialog1";
this->openFileDialog1->Filter = L"My Data Files (*.a,*.b)|*.a,*.b";

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

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

发布评论

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

评论(1

风筝在阴天搁浅。 2024-09-07 09:27:11

您需要使用分号:

this->openFileDialog1->Filter = L"My Data Files (*.a;*.b)|*.a;*.b";

You need to use a semicolon:

this->openFileDialog1->Filter = L"My Data Files (*.a;*.b)|*.a;*.b";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文