gpt4 book ai didi

c# - 使用 MS Word 更新文件时,Azure 存储文件共享会丢失元数据

转载 作者:行者123 更新时间:2023-12-03 04:25:32 25 4
gpt4 key购买 nike

我们正在通过 Azure 存储帐户使用文件共享。作为应用程序的一部分,我们为每个文件分配 ID 并将该 ID 存储在元数据中: ID in Metadata

通过此代码块设置此 ID:

    public static void SetId(this CloudFile cloudFile, Guid id)
{
cloudFile.Metadata[DocumentDbId] = id.ToString();
cloudFile.SetMetadata();
}

但是,当在 Microsoft Word 2013 中编辑此文件(所有文件均为 .docx)时,此元数据将被清除,并且我们会丢失引用。 enter image description here

如果我创建一个文本文件,在元数据中为其分配一个 ID,然后使用记事本对其进行编辑,则该元数据将保留在应有的位置并且不会被删除。

为什么使用 MS Word 进行编辑会删除元数据?以及如何防止这种情况发生?是否有其他方法可以设置不被编辑删除的任意 ID?

UPD:只是为了澄清这是我的情况:我通过 net use K: \http://myaccount.file.core.windows.net \tests /u:AZURE\myaccount uNrI0yyRxyMx 将文件共享安装为我的本地驱动器,我放了一个.docx驱动器上的文件。在 MS Azure 存储资源管理器中,我右键单击该文件,添加元数据 - 任何元数据,保存它(如上所述使用 C# 尝试过此操作,但结果是相同的)。再次检查以验证元数据是否已保存。然后在 MS Word 中从安装的驱动器中打开此文件,进行更改并保存。去检查文件上的元数据,里面什么也没有。

但是如果我创建一个 txt 文件,添加元数据,然后使用 Notepad++ 编辑该文件,然后保存它。元数据不会被清除。 MS Word 会执行一些操作来删除元数据

最佳答案

我有一个confirmation from Microsoft engineer Json Shay MS Word 在写入文件时会做一些奇怪的事情:

The reason is that MS Word (and many applications) use the Win32 ReplaceFile() API when saving a file, which is effectively a set of move+move+delete operations. Specifically, MS Word:

Writes the new version of the file into a new temporary file, which contains no properties: ~newfile.docx Rename existingfile.docx --> existingfile_backup.docx Rename ~newfile.docx --> existingfile.docx Delete existingfile_backup.docx The properties were written on the original existingfile.docx, which then gets renamed away, and then deleted.

This is different than notepad, which is modifying the existing file in-place.

关于c# - 使用 MS Word 更新文件时,Azure 存储文件共享会丢失元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43874520/

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