■ NameSpace 인터페이스의 Accounts 속성/GetDefaultFolder 메소드를 사용해 메일 계정별 디폴트 폴더를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using Microsoft.Office.Interop.Outlook; using System; using System.Text; using System.Windows.Forms; OlDefaultFolders[] defaultFolderArray = (OlDefaultFolders[])Enum.GetValues(typeof(OlDefaultFolders)); StringBuilder stringBuilder = new StringBuilder(); foreach(Account account in Application.Session.Accounts) { stringBuilder.AppendLine(account.DisplayName); foreach(OlDefaultFolders defaultFolder in defaultFolderArray) { try { MAPIFolder folder = account.Session.GetDefaultFolder(defaultFolder); stringBuilder.AppendLine(folder.FullFolderPath); } catch { } } } MessageBox.Show(stringBuilder.ToString()); |
※ Application은 Microsoft.Office.Tools.Outlook.OutlookAddInBase 클래스의 속성이다.