1

C# とAE.Net.Mailライブラリを使用して、Gmail からファイルを取得しています。大きなzipファイルに問題があります。

同じ問題が Java で説明され、解決されています: JavaMail BaseEncode64 エラー

C# と AE.Net.Mail ライブラリで部分フェッチ フラグを設定する方法を知っている人はいますか?

4

1 に答える 1

1

S22.Imapを使用 (または参照) します。これは AE.Net.Mail であり、いくつかの補足事項が記載されています。

例から: 添付ファイルが 2 メガバイトより小さい場合にのみダウンロードする

using System;
using S22.Imap;

namespace Test {
class Program {
    static void Main(string[] args)
    {
        using (ImapClient Client = new ImapClient("imap.gmail.com", 993,
         "username", "password", Authmethod.Login, true))
        {
            // This returns all messages sent since August 23rd 2012
            uint[] uids = Client.Search(
                SearchCondition.SentSince( new DateTime(2012, 8, 23) )
            );

            // Our lambda expression will be evaluated for every MIME part
            // of every mail message in the uids array
            MailMessage[] messages = Client.GetMessages(uids,
                (Bodypart part) => {
                 // We're only interested in attachments
                 if(part.Disposition.Type == ContentDispositionType.Attachment)
                 {
                    Int64 TwoMegabytes = (1024 * 1024 * 2);
                    if(part.Size > TwoMegabytes)
                    {
                        // Don't download this attachment
                        return false;
                    }
                 }

                 // fetch MIME part and include it in the returned MailMessage instance
                 return true;
                }
            );
        }
    }
}
}
于 2012-09-17T12:48:40.813 に答える