gpt4 book ai didi

c# - 使用 Open XML SDK 2.0 或 Linq 在 Word 2010 中删除自定义属性的内容

转载 作者:太空宇宙 更新时间:2023-11-03 11:41:18 25 4
gpt4 key购买 nike

我正在尝试在从我们的系统发送 word 文件之前从它们中删除敏感信息。下面是将要发送的文件中自定义属性的示例。我想删除 filePath 和 templateFilePath 的内容。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="docId">
<vt:lpwstr>123</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="verId">
<vt:lpwstr>1</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="4" name="templateId">
<vt:lpwstr>321</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="5" name="fileId">
<vt:lpwstr>123</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="6" name="filePath">
<vt:lpwstr>I want to remove this</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="7" name="templateFilePath">
<vt:lpwstr>I want to remove this</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="8" name="filePathOneNote">
<vt:lpwstr>\</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="9" name="fileName">
<vt:lpwstr>test.docx</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="10" name="comment">
<vt:lpwstr>Test comment</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="11" name="sourceId">
<vt:lpwstr>12345</vt:lpwstr>
</property>
<property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="12" name="module">
<vt:lpwstr>Document</vt:lpwstr>
</property>
</Properties>

我从 Open XML SDK 生产力工具中获得了这段代码:

private static void ChangeCustomFilePropertiesPart(CustomFilePropertiesPart customFilePropertiesPart)
{
CustomProperties.Properties properties = customFilePropertiesPart.Properties;

CustomProperties.CustomDocumentProperty customDocumentProperty1 = properties.Elements<CustomProperties.CustomDocumentProperty>().ElementAt(4);
CustomProperties.CustomDocumentProperty customDocumentProperty2 = properties.Elements<CustomProperties.CustomDocumentProperty>().ElementAt(5);

VariantTypes.VTLPWSTR vTLPWSTR1 = customDocumentProperty1.GetFirstChild<VariantTypes.VTLPWSTR>();
vTLPWSTR1.Text = "";


VariantTypes.VTLPWSTR vTLPWSTR2 = customDocumentProperty2.GetFirstChild<VariantTypes.VTLPWSTR>();
vTLPWSTR2.Text = "";

}

但我不能相信我要删除的属性是第四和第五,所以我必须在删除文本之前通过名称属性找到它们。谁能帮我?我想以某种方式使用 linq 或 Open XML SDK。

谢谢!

最佳答案

您不要通过@pid 查询,因为它可能会改变。改为通过 @name 查询,对于自定义文档属性,它将始终保持相同的值;所以在你的情况下,只需使用 Lambda 查询 Where @name = "templateFilePath"然后将它的 .Value 设置为空并将其复制回去并保存。

关于c# - 使用 Open XML SDK 2.0 或 Linq 在 Word 2010 中删除自定义属性的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4723427/

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