使用 C#/.NET 使用可处理自定义文件格式的过滤器处理程序扩展 Windows 搜索索引

发布于 2024-11-02 12:11:02 字数 388 浏览 0 评论 0原文

是否可以使用适用于 .NET/C# 中自定义文件格式的过滤器处理程序来扩展 Windows 搜索索引?

我希望索引适用于某些自定义文件类型。对于某些自定义文件格式,我需要实现过滤器或属性处理程序以对文件内容和属性进行索引。

我用谷歌搜索它以获得一些与之相关的样本,但我找不到任何有用的东西。虽然我从 msdn 得到了一篇文章,其中讨论了扩展 Windows 的索引。

Windows Search 开发人员指南 - 扩展索引

有人可以帮助我开始吗?

Is It possible to extend Windows search index with a filter handler that works with a custom file format in .NET/C#?

I want the indexing to work for some custom file types. For some custom file formats, I need to implement a filter or property handler to have file content and properties indexed.

I googled it to get some samples relating to it but I could not find anything useful. Although I got an article from msdn which talks about extending the indexes for windows.

Windows Search Developer's Guide - Extending the Index

Can anyone help me get started?

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

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

发布评论

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

评论(2

稀香 2024-11-09 12:11:02

你不应该这样做。

不是因为我这么说,而是因为 Microsoft 确实 MSDN: IFilter界面

引用:

重要提示在 Windows 7 及更高版本中,以托管代码编写的筛选器将被显式阻止。由于运行多个加载项的进程可能存在 CLR 版本控制问题,因此过滤器必须以本机代码编写。

如果您决定不使用 Windows 7,您仍然可以使用实现框架之一,例如 iFilterCode 制作一个。但它必须一直通过 Interop,这对速度来说是一个相当不错的打击。

You should not be doing this.

Not because I say so, but because Microsoft does MSDN: IFilter interface.

A quote :

Important In Windows 7 and later, filters written in managed code are explicitly blocked. Filters MUST be written in native code due to potential CLR versioning issues with the process that multiple add-ins run in.

If you decide not to use Windows 7, you can still use one of the implementation frameworks like iFilterCode to make one. But it will have to go through Interop all the time which is a pretty decent hit in speed.

晨与橙与城 2024-11-09 12:11:02

我相信 Acrobat 提供了一个 iFilter 接口,我可以使用它通过 MS SQL Server 全文搜索在 PDF 内部进行搜索。

I believe that Acrobat provides an iFilter interface, and I can use that to search inside of PDFs using MS SQL Server Full-Text-Search.

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