使用OLE DB SQL字段进行Windows搜索

时间:2010-09-20 10:20:43

标签: c# .net windows search oledb

我需要在.NET应用程序中使用Windows搜索来搜索包含特定关键字的某些文件。所有这些接缝都很容易使用OLE DB连接到Windows 7上的Windows搜索数据存储。

我希望这是一个非常简单的问题。我一直在搜索Windows搜索的SQL查询的字段定义的高低,所以我可以简单地找出我可以搜索的内容以及我可以在结果集中找到的内容。我无法在任何地方找到它。

有人能指出我正确的方向吗?

3 个答案:

答案 0 :(得分:5)

行。我终于找到了我可能需要的所有元素。它们位于:

http://msdn.microsoft.com/sv-se/library/ff518152(v=VS.85).aspx

几乎无法提及

答案 1 :(得分:4)

此页面(http://msdn.microsoft.com/sv-se/library/ff518152(v=VS.85).aspx)是一个很好的起点,但请注意,并非所有列都在Windows搜索上下文中有效(我认为它们与其他应用程序(如Windows Media Center)不同。通过试用和错误我发现Windows 8.1搜索上的有效列是:

- System.Comment
- System.Company
- System.ComputerName
- System.ContentStatus
- System.ContentType
- System.Copyright
- System.DateAccessed
- System.DateAcquired
- System.DateArchived
- System.DateCompleted
- System.DateCreated
- System.DateImported
- System.DateModified
- System.DueDate
- System.EndDate
- System.FileAttributes
- System.FileDescription
- System.FileExtension
- System.FileFRN
- System.FileName
- System.FileOwner
- System.FlagColor
- System.FlagColorText
- System.FlagStatus
- System.FlagStatusText
- System.Identity
- System.Importance
- System.ImportanceText
- System.IsAttachment
- System.IsDeleted
- System.IsEncrypted
- System.IsFlagged
- System.IsFlaggedComplete
- System.IsIncomplete
- System.IsRead
- System.ItemAuthors
- System.ItemDate
- System.ItemFolderNameDisplay
- System.ItemFolderNameDisplay
- System.ItemFolderPathDisplay
- System.ItemFolderPathDisplayNarrow
- System.ItemName
- System.ItemNameDisplay
- System.ItemNamePrefix
- System.ItemParticipants
- System.ItemPathDisplay
- System.ItemPathDisplayNarrow
- System.ItemType
- System.ItemTypeText
- System.ItemUrl
- System.Keywords
- System.Kind
- System.KindText
- System.Language
- System.MileageInformation
- System.MIMEType
- System.Null
- System.OriginalFileName
- System.ParentalRating
- System.ParentalRatingReason
- System.ParsingName
- System.Priority
- System.PriorityText
- System.Project
- System.ProviderItemID
- System.Rating
- System.RatingText
- System.Sensitivity
- System.SensitivityText
- System.SFGAOFlags
- System.Shell.OmitFromView

此页面中的这些搜索特定字段(http://msdn.microsoft.com/en-us/library/windows/desktop/ff521715(v=vs.85).aspx):

- System.Search.AutoSummary
- System.Search.ContainerHash
- System.Search.Contents
- System.Search.EntryID
- System.Search.GatherTime
- System.Search.HitCount
- System.Search.Rank
- System.Search.Store

答案 2 :(得分:0)

Querying the Index Programmatically是您可以在其中找到相关信息的目标网页。 Microsoft Windows Search 3.x SDK在C#/ .NET / Visual Studio中有示例应用程序