gpt4 book ai didi

c# - 向文件添加评论 [元数据]

转载 作者:可可西里 更新时间:2023-11-01 13:55:15 29 4
gpt4 key购买 nike

我很确定这是可能的,只是不确定它的术语是什么以及如何去做。基本上,如果您右键单击任何文件并转到属性,然后转到摘要,您可以向文件添加评论等。

我想知道的是,您将如何从 C# 中有问题地执行此操作。此外,一旦您添加了评论,您以后如何从文件中读取这些评论。

我确信它与文件的元数据有关,只是不确定去哪里查看。此外,我需要在 Windows 窗体中执行此操作,因此权限不是什么大问题。

提前致谢。

最佳答案

使用 DSO 的示例显示了如何设置作者和评论字段:

try
{
DSOFile.OleDocumentPropertiesClass doc = new DSOFile.OleDocumentPropertiesClass();
doc.Open(filename, false, DSOFile.dsoFileOpenOptions.dsoOptionDefault);

doc.SummaryProperties.Author = author;
doc.SummaryProperties.Comments = comments;

doc.Close(true);
}
catch (Exception ex)
{
throw new Exception("Could not update the file properties: " + filename, ex);
}

关于c# - 向文件添加评论 [元数据],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/506246/

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