我想通过Windows搜索索引服务阅读DWG / AutoCAD文件的元数据。我在谈论可以通过右键单击资源管理器访问的属性,而无需打开AutoCAD。
我有一个基于MFC对话框的应用程序用Visual C ++ 2005编写,从这个应用程序内部我想访问给定文件的元数据(如作者,创建日期等)。这是由iFilter完成的,但是自Windows XP以来它已被弃用,并且将在Windows 8中消失(并且VS2005中不存在LoadIFilter)。现在从我的理解,它可以通过Windows搜索完成 - 如果我错了,请纠正我。我发现的每个例子(包括msdn)都显示了如何将有关您自己文件的数据提供给Windows搜索索引。我需要知道如何向Windows Search询问有关给定文件的元数据。
由于 t.g.wilk
编辑: 这是我到目前为止所提出的:
BOOL WSQ_DoQuery( const wchar_t *constr, const wchar_t *querystr, VARIANT &result ) {
HRESULT hr = 0;
BOOL ret;
// Get the ADO connection
_Connection *con = NULL;
hr = CoCreateInstance( CLSID_Connection, NULL, CLSCTX_ALL, IID__Connection, (LPVOID *)&con );
if ( SUCCEEDED(hr) ) {
_Recordset *rs = NULL;
// Convert wide strings to BSTR as required by ADO APIs
BSTR bconstr = SysAllocString( constr );
BSTR bquerystr = SysAllocString( querystr );
if ( bconstr && bquerystr ) {
// Open the connection
hr = con->Open( bconstr, NULL, NULL, 0 );
if ( SUCCEEDED(hr) ) {
// Execute the query
hr = con->Execute( bquerystr, NULL, 0, &rs );
if ( SUCCEEDED(hr) ) {
// Display the results
ret = WSQ_GetCDate( rs ,result);
rs->Release();
} else {
TRACE( "Failed to execute query, %08x\r\n", hr );
} // if
} else {
TRACE( "Failed to open ADO connection, %08x\r\n", hr );
} // if
} else {
TRACE("Failed to convert wide to BSTR\r\n" );
} // if
con->Release();
if ( bconstr ) {
SysFreeString( bconstr );
}
if ( bquerystr ) {
SysFreeString( bquerystr );
}
} else {
TRACE("Failed to get connection, %08x\r\n", hr );
} // if
return ret;
} // DoQuery
连接字符串(constr)是
provider=Search.CollatorDSO.1;EXTENDED PROPERTIES="Application=Windows"
由ISearchQueryHelper返回。 查询(查询)是
SELECT System.Document.DateCreated FROM SystemIndex WHERE System.FileName LIKE 'filename%' AND DIRECTORY='file:C:\path\to\file'
现在的问题是我得到一个例外:
First-chance exception at 0x77c5fc56 in fraudTest.exe: Microsoft C++ exception: CNLBaseException at memory location 0x0012d6d0..
在这一行
hr = con->Open( bconstr, NULL, NULL, 0 );
后跟查询的空结果(此代码来自WSQ_GetCDate):
rs->get_EOF( &eor );
while ( eor != VARIANT_TRUE ) { //this never executes }
令人惊讶的是SUCCEEDED(hr)
在异常后返回true。
我在哪里犯了错误以及如何尝试找到它?
由于 t.g.wilk
答案 0 :(得分:0)
我没有解决这个特殊问题,但我了解到我不需要Windows搜索来获取文件元数据。要查找的关键字是“属性”而不是元数据。我从Windows SDK v7.0示例应用程序中获取了一段名为PropertyEdit的代码。