引用该dll即可 以C#修改文件作者为例: OleDocumentProperties file = new OleDocumentProperties(); file.Open(path); Console.WriteLine("old:" + file.SummaryProperties.Author); file.SummaryProperties.Author = "123"; file.Save(); Console.WriteLine("new:" + file.SummaryProperties.Author); file.Close();
2022-05-13 13:14:08 559KB 修改详细信息 读取详细信息
1