■ _MailItem 인터페이스의 Attachments 속성을 사용해 첨부 파일을 저장하는 방법을 보여준다.
▶ CustomAddIn.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
using Microsoft.Office.Interop.Outlook; using System; using System.IO; using System.Windows.Forms; namespace TestProject { /// <summary> /// 커스텀 애드인 /// </summary> public partial class CustomAddIn { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 커스텀 애드인 시작시 처리하기 - CustomAddIn_Startup(sender, e) /// <summary> /// 커스텀 애드인 시작시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Startup(object sender, EventArgs e) { Application.NewMail += Application_NewMail; } #endregion #region 커스텀 애드인 셧다운시 처리하기 - CustomAddIn_Shutdown(sender, e) /// <summary> /// 커스텀 애드인 셧다운시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void CustomAddIn_Shutdown(object sender, EventArgs e) { } #endregion #region 애플리케이션 신규 메일 수신시 처리하기 - Application_NewMail() /// <summary> /// 애플리케이션 신규 메일 수신시 처리하기 /// </summary> private void Application_NewMail() { MAPIFolder inboxFolder = Application.ActiveExplorer().Session.GetDefaultFolder(OlDefaultFolders.olFolderInbox); Items inboxFolderItems = inboxFolder.Items; inboxFolderItems = inboxFolderItems.Restrict("[Unread] = true"); string saveDirectoryPath = @"C:\TestFileSave"; try { foreach(object item in inboxFolderItems) { MailItem mailItem = item as MailItem; if(mailItem != null) { if(mailItem.Attachments.Count > 0) { if(!Directory.Exists(saveDirectoryPath)) { Directory.CreateDirectory(saveDirectoryPath); } for(int i = 1; i <= mailItem.Attachments.Count; i++) { string saveFilePath = Path.Combine(saveDirectoryPath, mailItem.Attachments[i].FileName); mailItem.Attachments[i].SaveAsFile(saveFilePath); } } } } } catch(System.Exception exception) { MessageBox.Show(exception.ToString()); } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region VSTO에서 생성한 코드 /// <summary> /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. /// </summary> private void InternalStartup() { this.Startup += new System.EventHandler(CustomAddIn_Startup ); this.Shutdown += new System.EventHandler(CustomAddIn_Shutdown); } #endregion } } |