Spotlight 查询搜索名称不以 bin 结尾的所有存档和 ISO 文件
以下 Spotlight 查询正确返回我系统上的所有存档和 ISO 文件:
kind:iso OR kind:archive
但是,Spotlight 也将 .bin
文件视为存档,并在结果中返回 .bin
文件。
如何修改上述查询并从结果中排除以 bin
结尾的文件?我尝试了以下查询,但它不起作用:
(kind:iso OR kind:archive) AND NOT name:*bin
提前致谢。
The following Spotlight query, correctly returns all archive and ISO files on my system:
kind:iso OR kind:archive
However, Spotlight treats .bin
files as archives too and returns .bin
files in the results as well.
How can I modify the above query and exclude files that end in bin
from the result? I tried the following query but it is not working:
(kind:iso OR kind:archive) AND NOT name:*bin
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚在 IRC 频道中找到了解决方案。您应该使用
name:.bin
而不是编写name:*bin
,这样整个查询将是:Just found the solution in an IRC channel. Instead of writing
name:*bin
you should usename:.bin
so the whole query would be: