如何在 C# 中使用 EPPlus 删除 Excel 文件的相关人员(作者和修改者)属性
How to remove the Related People (Author and Modified By) property of Excel file using EPPlus in C#
我正在使用 EPPlus 创建一个 excel 文件。现在我想删除 Excel 文件的相关人员(作者和修改者)属性。
我该怎么做?
回答我自己的问题,这可以通过将 Workbook.Properties.LastModefiedBy
和 Workbook.Properties.Author
添加到 ExcelPackage
来完成,如下所示:
//Get file info of temp excel file
FileInfo newFile = new FileInfo(@"your-docx-file-path");
//Create ExcelPackage for excel file
ExcelPackage pck = new ExcelPackage(newFile);
pck.Workbook.Properties.LastModifiedBy = string.Empty;
pck.Workbook.Properties.Author = string.Empty;
我正在使用 EPPlus 创建一个 excel 文件。现在我想删除 Excel 文件的相关人员(作者和修改者)属性。
我该怎么做?
回答我自己的问题,这可以通过将 Workbook.Properties.LastModefiedBy
和 Workbook.Properties.Author
添加到 ExcelPackage
来完成,如下所示:
//Get file info of temp excel file
FileInfo newFile = new FileInfo(@"your-docx-file-path");
//Create ExcelPackage for excel file
ExcelPackage pck = new ExcelPackage(newFile);
pck.Workbook.Properties.LastModifiedBy = string.Empty;
pck.Workbook.Properties.Author = string.Empty;