本文介绍了如何从Notes邮件访问附件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想访问特定的邮件附件的Lotus Notes中。
我越来越依恋名$文件。
I am want to access attachment of particular mail in Lotus Notes.I am getting Attachment name with $File.
但我想提取该附件,并希望将其保存在用户指定的path.Using C#。
But i want to extract this attachments and want to save it in user specified path.Using C#.
推荐答案
这应该是类似下面的东西,不知道如果我有C#虽然正确sintax。
It should be something similar to below, not sure if I have the correct sintax for c# though.
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 )
}
}
}
这篇关于如何从Notes邮件访问附件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!