QFileSystemModel 隐藏某些文件
我正在寻找的几乎与 QFileSystemModel::setNameFilters() 相反。 我想设置过滤器来捕获我不想显示的内容,但让其他所有内容通过。我没有看到任何方法来浏览和隐藏某些文件,因为remove()实际上从系统中删除了该文件。
我该怎么办?
编辑以澄清:我有一个不想显示的特定文件名列表。
What I'm looking for is pretty much the opposite of QFileSystemModel::setNameFilters().
I'd like to set filters that catch things I don't want to show, but let everything else through. I don't see any way to go through and hide certain files, because remove() actually removes the file from the system.
How do I go about this?
Edit for clarification: I have a specific list of filenames that I don't want to show.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是一个完美的解决方案,但 QDir::Filters 中是否有任何现有预设你可以使用吗?它将过滤目录、符号链接、系统文件等内容
Not a perfect solution but are there any existing presets in QDir::Filters that you can use? It will filter things like dirs, symlinks, system files etc