使用 Microsoft.WindowsAPICodePack 设置扩展文件属性
扩展文件属性(例如公司信息)为 Word 和 PDF 文档提供有价值的元数据。虽然使用 shell32.dll 检索这些属性很简单,但设置它们却带来了更大的挑战。本文探讨如何利用 Microsoft.WindowsAPICodePack 有效地更改扩展文件属性。
入门
首先,安装以下 NuGet包:
读写属性
安装软件包后,您可以使用以下命令访问和修改属性代码:
using Microsoft.WindowsAPICodePack.Shell; using Microsoft.WindowsAPICodePack.Shell.PropertySystem; // Get file path string filePath = @"C:\temp\example.docx"; // Load file var file = ShellFile.FromFilePath(filePath); // Get current properties string[] oldAuthors = file.Properties.System.Author.Value;
以上是如何使用 Microsoft.WindowsAPICodePack 设置扩展文件属性?的详细内容。更多信息请关注PHP中文网其他相关文章!