gpt4 book ai didi

c# - 在现有文件的详细信息选项卡中添加/编辑新的扩展属性

转载 作者:太空狗 更新时间:2023-10-30 00:37:28 28 4
gpt4 key购买 nike

我试着在 SO 上看这个,但所有试图回答的问题都没有提供完整的答案。

我实际上想在现有文件的详细信息选项卡中添加一个属性。文件的扩展名为 sldprt。属性/值必须在 Windows 资源管理器中可见。

不确定如何使用 Windows API 代码包外壳或 DSOFile 完成此操作?任何其他解决方案也可以。

我在 Windows 10 上使用 VS、C#。

如果有人能提供详细的解决方案,我将不胜感激。

完美的解决方案是:

  • 通过 dsofile、ADS 或任何可能的方式将属性添加到文件中。
  • 编辑 Windows 注册表或 Windows 中负责在文件属性的详细信息选项卡和 Windows 资源管理器中显示新属性的任何部分
  • 展示如何编辑属性的值。

这个question的答案不向详细信息选项卡或 Windows 资源管理器详细 View 添加属性。

我认为这是可能的,因为 SOLIDWORKS(3d 包)向所有 SOLIDWORKS 文件添加了一个名为 sw last saved with 的属性。详细信息窗口中还有大量其他属性。

如果您没有正确的解决方案,请不要回答。非常感谢。

我不确定这个问题是否与 Add new metadata properties to a file 重复.

预览:

enter image description here enter image description here

编辑:

sldprt 扩展的注册表(供引用):

enter image description here

最佳答案

属性窗口中的详细信息选项卡填充有 metadata property handlers .元数据属性系统是 Microsoft 在 Windows Vista 中引入的,它是开放和可扩展的,使独立开发人员(如 Solidworks)能够实现和支持他们自己的文件属性。非常粗略地说,执行流程是这样的:

User clicks file properties
Look up property handler for the file format
If found property handler:
Query property handler for properties
Populate file details with queried properties
Else:
Populate file details with generic file info

属性处理程序是 COM 对象。 COM (Component Object Model)是 Microsoft 对独立于语言的面向对象框架的尝试,其起源可以追溯到 90 年代,但出于此解释的目的,只需说 COM 对象是实现 IUnknown 的 C++ 类即可。界面。属性处理程序必须实现 IPropertyStore上面的界面:

struct IPropertyStore : public IUnknown
{
public:
virtual HRESULT GetCount(
DWORD *cProps) = 0;

virtual HRESULT GetAt(
DWORD iProp,
PROPERTYKEY *pkey) = 0;

virtual HRESULT GetValue(
REFPROPERTYKEY key,
PROPVARIANT *pv) = 0;

virtual HRESULT SetValue(
REFPROPERTYKEY key,
REFPROPVARIANT propvar) = 0;

virtual HRESULT Commit( void) = 0;
};

此接口(interface)的便捷实现是 CLSID_InMemoryPropertyStore提供给开发人员以简化他们自己的 IPropertyStore 实现。这里有趣的方法是 GetValueSetValue。为属性分配了一个唯一的 GUID,传递到这些函数中的 PROPERTYKEY 结构包含该 GUID 以标识该属性。 GetValueSetValue 的实现细节留给开发人员,因此由开发人员决定如何以及在何处存储每个属性的值——这些值可以是存储在另一个文件、备用文件流或注册表中,仅举几个选项——但出于可移植性原因,建议将值存储在文件本身中。这样,如果文件被压缩并通过电子邮件发送,例如,属性会随之而来。

属性处理程序 COM 对象被编译成 DLL 并使用 regsvr32 向系统注册。这允许 Windows 知道去哪里寻找特定文件格式的属性。注册后,可以通过多种方式获取属性处理程序,其中之一是便捷函数 SHGetPropertyStoreFromParsingName :

HRESULT GetPropertyStore(PCWSTR pszFilename, GETPROPERTYSTOREFLAGS gpsFlags, IPropertyStore** ppps)
{
WCHAR szExpanded[MAX_PATH];
HRESULT hr = ExpandEnvironmentStrings(pszFilename, szExpanded, ARRAYSIZE(szExpanded)) ? S_OK : HRESULT_FROM_WIN32(GetLastError());
if (SUCCEEDED(hr))
{
WCHAR szAbsPath[MAX_PATH];
hr = _wfullpath(szAbsPath, szExpanded, ARRAYSIZE(szAbsPath)) ? S_OK : E_FAIL;
if (SUCCEEDED(hr))
{
hr = SHGetPropertyStoreFromParsingName(szAbsPath, NULL, gpsFlags, IID_PPV_ARGS(ppps));
}
}
return hr;
}

获取后,可以在 IPropertyStore 对象上调用 GetValueSetValue 来获取、更改或设置属性的新值。如果使用 SetValue,请确保调用 Commit


Microsoft 提供了一个名为 PropertyEdit 的实用程序, 获取和设置文件的元数据属性作为其 Windows 经典示例的一部分。很遗憾他们没有在帮助页面的任何地方提及它。由于您已经安装了 Solidworks,您感兴趣的文件格式的属性处理程序应该已经在系统上注册,这应该是编译 PropertyEdit 并使用它来获取和设置处理程序支持的元数据属性。这是一个简单的命令行实用程序。

如果您需要或想要为您自己的文件格式支持自定义元数据,还有一个完整的示例属性处理程序:RecipePropertyHandler .

作为引用,通过规范名称设置属性:

HRESULT GetPropertyStore(PCWSTR pszFilename, GETPROPERTYSTOREFLAGS gpsFlags, IPropertyStore** ppps)
{
WCHAR szExpanded[MAX_PATH];
HRESULT hr = ExpandEnvironmentStrings(pszFilename, szExpanded, ARRAYSIZE(szExpanded)) ? S_OK : HRESULT_FROM_WIN32(GetLastError());
if (SUCCEEDED(hr))
{
WCHAR szAbsPath[MAX_PATH];
hr = _wfullpath(szAbsPath, szExpanded, ARRAYSIZE(szAbsPath)) ? S_OK : E_FAIL;
if (SUCCEEDED(hr))
{
hr = SHGetPropertyStoreFromParsingName(szAbsPath, NULL, gpsFlags, IID_PPV_ARGS(ppps));
}
}
return hr;
}

HRESULT SetPropertyValue(PCWSTR pszFilename, PCWSTR pszCanonicalName, PCWSTR pszValue)
{
// Convert the Canonical name of the property to PROPERTYKEY
PROPERTYKEY key;
HRESULT hr = PSGetPropertyKeyFromName(pszCanonicalName, &key);
if (SUCCEEDED(hr))
{
IPropertyStore* pps = NULL;

// Call the helper to get the property store for the
// initialized item
hr = GetPropertyStore(pszFilename, GPS_READWRITE, &pps);
if (SUCCEEDED(hr))
{
PROPVARIANT propvarValue = {0};
hr = InitPropVariantFromString(pszValue, &propvarValue);
if (SUCCEEDED(hr))
{
hr = PSCoerceToCanonicalValue(key, &propvarValue);
if (SUCCEEDED(hr))
{
// Set the value to the property store of the item.
hr = pps->SetValue(key, propvarValue);
if (SUCCEEDED(hr))
{
// Commit does the actual writing back to the file stream.
hr = pps->Commit();
if (SUCCEEDED(hr))
{
wprintf(L"Property %s value %s written successfully \n", pszCanonicalName, pszValue);
}
else
{
wprintf(L"Error %x: Commit to the propertystore failed.\n", hr);
}
}
else
{
wprintf(L"Error %x: Set value to the propertystore failed.\n", hr);
}
}
PropVariantClear(&propvarValue);
}
pps->Release();
}
else
{
wprintf(L"Error %x: getting the propertystore for the item.\n", hr);
}
}
else
{
wprintf(L"Invalid property specified: %s\n", pszCanonicalName);
}
return hr;
}

关于c# - 在现有文件的详细信息选项卡中添加/编辑新的扩展属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50686095/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com