嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#用imap下载邮件附件
用C#实现的通过imap邮件协议从邮件系统下载想要的附件,从而实现附件整理的小工具。
.
├── C#用imap下载邮件附件_KliveMailHelper.rar
└── KliveMailHelper
├── doc
│ └── 产品需求文档
│ ├── 快盘附件精灵.doc
│ ├── 用户简单分析.doc
│ ├── 快盘附件精灵草图.doc
│ ├── 用户信息收集问卷.doc
│ └── 快盘附件精灵草图.jnt
└── source
├── KliveMailHelper
│ ├── IMAP
│ │ ├── Helper.cs
│ │ ├── ImapAddress.cs
│ │ ├── ImapAddressCollection.cs
│ │ ├── ImapAddressList.cs
│ │ ├── ImapAuthenticate.cs
│ │ ├── ImapCommand.cs
│ │ ├── ImapConnect.cs
│ │ ├── ImapDecode.cs
│ │ ├── ImapEnumerators.cs
│ │ ├── ImapException.cs
│ │ ├── ImapFolder.cs
│ │ ├── ImapFolderNode.cs
│ │ ├── ImapFolderNodeList.cs
│ │ ├── ImapMailbox.cs
│ │ ├── ImapMailboxMessage.cs
│ │ ├── ImapMailboxMessageComparer.cs
│ │ ├── ImapMessageBodyPart.cs
│ │ ├── ImapMessageBodyPartList.cs
│ │ ├── ImapMessageFlags.cs
│ │ ├── KliveMailHelper.Imap.csproj
│ │ ├── KliveMailHelper.Imap.csproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RegEx
│ │ │ ├── Fetch.cs
│ │ │ └── Mailbox.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── KlilveMailHelper.Imap.dll
│ │ │ │ ├── KlilveMailHelper.Imap.pdb
│ │ │ │ ├── KlilveMailHelper.Imap.xml
│ │ │ │ └── Koolwired.Imap.XML
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── KlilveMailHelper.Imap.dll
│ │ ├── KlilveMailHelper.Imap.pdb
│ │ ├── KliveMailHelper.Imap.csproj.FileListAbsolute.txt
│ │ ├── Koolwired.Imap.csproj.FileListAbsolute.txt
│ │ └── TempPE
│ ├── KliveMailHelper
│ │ ├── Core
│ │ │ ├── Attachment.cs
│ │ │ ├── Helper.cs
│ │ │ ├── KmhException.cs
│ │ │ ├── MailHelperCore.cs
│ │ │ ├── UserAccount.cs
│ │ │ └── WellKnownMailServices.cs
│ │ ├── KliveMailHelper.csproj
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Res
│ │ │ ├── Search.jpg
│ │ │ └── mail.jpg
│ │ ├── UI
│ │ │ ├── AccountDlg.Designer.cs
│ │ │ ├── AccountDlg.cs
│ │ │ ├── AccountDlg.resx
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── Program.cs
│ │ │ └── ProgressColumn.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── KlilveMailHelper.Imap.dll
│ │ │ ├── KlilveMailHelper.Imap.pdb
│ │ │ ├── KlilveMailHelper.Imap.xml
│ │ │ ├── KliveMailHelper.exe
│ │ │ ├── KliveMailHelper.pdb
│ │ │ ├── KliveMailHelper.vshost.exe
│ │ │ └── KliveMailHelper.vshost.exe.manifest
│ │ └── obj
│ │ └── Debug
│ │ ├── KliveMailHelper.Properties.Resources.resources
│ │ ├── KliveMailHelper.UI.AccountDlg.resources
│ │ ├── KliveMailHelper.UI.FormMain.resources
│ │ ├── KliveMailHelper.csproj.FileListAbsolute.txt
│ │ ├── KliveMailHelper.csproj.GenerateResource.Cache
│ │ ├── KliveMailHelper.exe
│ │ ├── KliveMailHelper.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── KliveMailHelper.sln
│ ├── KliveMailHelper.suo
│ ├── UnitTest
│ │ ├── CaseAttachment.cs
│ │ ├── CaseImapFullConnection.cs
│ │ ├── CaseImapMailbox.cs
│ │ ├── CaseKliveMailHelperCore.cs
│ │ ├── CaseUserAccount.cs
│ │ ├── CaseWellKnownMailServices.cs
│ │ ├── ConnectionGUI.Designer.cs
│ │ ├── ConnectionGUI.cs
│ │ ├── ConnectionGUI.resx
│ │ ├── KliveMailHelper.UnitTest.csproj
│ │ ├── KliveMailHelper.UnitTest.csproj.user
│ │ ├── MailboxGUI.Designer.cs
│ │ ├── MailboxGUI.cs
│ │ ├── MailboxGUI.resx
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Utils.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── KlilveMailHelper.Imap.dll
│ │ │ ├── KlilveMailHelper.Imap.pdb
│ │ │ ├── KlilveMailHelper.Imap.xml
│ │ │ ├── KliveMailHelper.exe
│ │ │ ├── KliveMailHelper.pdb
│ │ │ ├── TestResult.xml
│ │ │ ├── UnitTest.dll
│ │ │ ├── UnitTest.dll.VisualState.xml
│ │ │ ├── UnitTest.pdb
│ │ │ ├── nunit.framework.dll
│ │ │ └── nunit.framework.xml
│ │ └── obj
│ │ └── Debug
│ │ ├── KliveMailHelper.UnitTest.csproj.FileListAbsolute.txt
│ │ ├── KliveMailHelper.UnitTest.csproj.GenerateResource.Cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── UnitTest.ConnectionGUI.resources
│ │ ├── UnitTest.MailboxGUI.resources
│ │ ├── UnitTest.csproj.FileListAbsolute.txt
│ │ ├── UnitTest.csproj.GenerateResource.Cache
│ │ ├── UnitTest.dll
│ │ └── UnitTest.pdb
│ ├── include
│ │ ├── WTL80
│ │ │ ├── include
│ │ │ │ ├── atlapp.h
│ │ │ │ ├── atlcrack.h
│ │ │ │ ├── atlctrls.h
│ │ │ │ ├── atlctrlw.h
│ │ │ │ ├── atlctrlx.h
│ │ │ │ ├── atlddx.h
│ │ │ │ ├── atldlgs.h
│ │ │ │ ├── atlfind.h
│ │ │ │ ├── atlframe.h
│ │ │ │ ├── atlgdi.h
│ │ │ │ ├── atlmisc.h
│ │ │ │ ├── atlprint.h
│ │ │ │ ├── atlres.h
│ │ │ │ ├── atlresce.h
│ │ │ │ ├── atlscrl.h
│ │ │ │ ├── atlsplit.h
│ │ │ │ ├── atltheme.h
│ │ │ │ ├── atluser.h
│ │ │ │ ├── atlwince.h
│ │ │ │ └── atlwinx.h
│ │ │ └── readme.htm
│ │ └── errorcheck.h
│ └── klivemailhelpershellext
│ ├── klivemailhelpershellext
│ │ ├── KliveMailContextMenuImpl.rgs
│ │ ├── ReadMe.txt
│ │ ├── contextmenu
│ │ │ ├── KliveMailContextMenuImpl.cpp
│ │ │ └── KliveMailContextMenuImpl.h
│ │ ├── dlldata.c
│ │ ├── dllmain.cpp
│ │ ├── dllmain.h
│ │ ├── klivemailhelpershellext.aps
│ │ ├── klivemailhelpershellext.cpp
│ │ ├── klivemailhelpershellext.def
│ │ ├── klivemailhelpershellext.idl
│ │ ├── klivemailhelpershellext.rc
│ │ ├── klivemailhelpershellext.rgs
│ │ ├── klivemailhelpershellext.vcproj
│ │ ├── klivemailhelpershellext.vcproj.KINGSOFT-688D6A.Administrator.user
│ │ ├── klivemailhelpershellextPS.vcproj
│ │ ├── klivemailhelpershellextPS.vcproj.KINGSOFT-688D6A.Administrator.user
│ │ ├── klivemailhelpershellext_i.c
│ │ ├── klivemailhelpershellext_i.h
│ │ ├── klivemailhelpershellext_p.c
│ │ ├── klivemailhelpershellextps.def
│ │ ├── resource
│ │ │ └── resource.h
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ ├── klivemailhelpershellext.sln
│ └── klivemailhelpershellext.suo
└── NUnit
├── NUnitFitTests.html
├── NUnitTests.config
├── NUnitTests.nunit
├── addins
├── agent.conf
├── framework
│ ├── nunit.framework.dll
│ ├── nunit.framework.xml
│ ├── nunit.mocks.dll
│ └── pnunit.framework.dll
├── lib
│ ├── failure.png
│ ├── fit.dll
│ ├── ignored.png
│ ├── inconclusive.png
│ ├── log4net.dll
│ ├── nunit-console-runner.dll
│ ├── nunit-gui-runner.dll
│ ├── nunit.core.dll
│ ├── nunit.core.interfaces.dll
│ ├── nunit.fixtures.dll
│ ├── nunit.uiexception.dll
│ ├── nunit.uikit.dll
│ ├── nunit.util.dll
│ ├── skipped.png
│ └── success.png
├── nunit-agent-x86.exe
├── nunit-agent-x86.exe.config
├── nunit-agent.exe
├── nunit-agent.exe.config
├── nunit-console-x86.exe
├── nunit-console-x86.exe.config
├── nunit-console.exe
├── nunit-console.exe.config
├── nunit-x86.exe
├── nunit-x86.exe.config
├── nunit.exe
├── nunit.exe.config
├── pnunit-agent.exe
├── pnunit-agent.exe.config
├── pnunit-launcher.exe
├── pnunit-launcher.exe.config
├── runFile.exe
├── runFile.exe.config
├── test.conf
└── tests
├── loadtest-assembly.dll
├── mock-assembly.dll
├── nonamespace-assembly.dll
├── nunit-console.tests.dll
├── nunit-gui.tests.dll
├── nunit.core.tests.dll
├── nunit.fixtures.tests.dll
├── nunit.framework.dll
├── nunit.framework.tests.dll
├── nunit.mocks.tests.dll
├── nunit.uiexception.tests.dll
├── nunit.uikit.tests.dll
├── nunit.util.tests.dll
├── test-assembly.dll
├── test-utilities.dll
└── timing-tests.dll
44 directories, 221 files