是否可以为多种扩展类型提供文件过滤器?
我使用标准的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用分号:
You need to use a semicolon: