Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LotusNotesの特定のメールの添付ファイルにアクセスしたい。$Fileで添付ファイル名を取得しています。
しかし、私はこの添付ファイルを抽出して、ユーザー指定のパスに保存したいと思います。C#を使用します。
以下のようなものになるはずですが、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 ) } } }