我想在Lotus Notes中访问特定邮件的附件。 我正在使用$ File获取附件名称。
但我想提取这些附件并希望将其保存在用户指定的路径中。使用C#。
答案 0 :(得分:3)
它应该类似于下面的内容,不确定我是否拥有c#的正确sintax。
NotesRichTextItem rtitem = doc.GetFirstItem("name")
if ( rtitem.Type = 1) {
foreach (NotesEmbeddedObject o in rtitem.EmbeddedObjects) {
if ( o.Type = 1454 ) {
o.ExtractFile( "c:\samples\" & o.Source )
}
}
}