使用 WMI 查询扩展文件属性
是否有 WMI 命名空间和类可用于获取文件的扩展属性,例如所有者、作者、标题、主题、类别、注释?
请建议。
Is there a WMI namespace and a class that can be used to obtain the extended properties of a file, such as Owner, Author, Title, Subject, Category, Comments?
please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,WMI 不提供对扩展文件属性的访问。要获取它们,您可以使用
Folder.GetDetailsOf
方法(使用 PowerShell 或 VBScript 等脚本语言)或 < code>IShellDetails.GetDetailsOf 方法(在 C++ 等编译语言中)。看看 这是我的回答 为例。* 不确定我在区分语言时使用了正确的术语,所以请耐心等待并随时纠正。
AFAIK, WMI doesn't provides access to the extended file properties. To obtain them, you can use the
Folder.GetDetailsOf
method (in scripting languages such as PowerShell or VBScript) or theIShellDetails.GetDetailsOf
method (in compiled languages such as C++). Take a look at this my answer for an example.* Not sure I used the correct terminology here when distinguishing between the languages, so please bear with me and feel free to correct.