I wanted to get Outlook folder details(User Created Outlook Folder Names) using Linq query,There's no any error but expected result not achieved,
Some example in this site but it doen't get my expected results
Here is my code.
private IEnumerable<MAPIFolder> GetAllFolders(Folders folders)
{
foreach (MAPIFolder f in folders) {
yield return f;
foreach (var subfolder in GetAllFolders(f.Folders)) {
yield return subfolder;
}
}
}
Here is my button click event,
private void button1_Click(object sender, EventArgs e)
{
Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook._NameSpace ns = (Microsoft.Office.Interop.Outlook._NameSpace)oApp.GetNamespace("MAPI");
foreach (var f in GetAllFolders(ns.Folders)) {
//if (f == DELETE_FOLDER) continue;
if (f.DefaultItemType == OlItemType.olMailItem) {
string ff = f.Name;//here i tried to get folder name,but it doen't return foldernames
}
}
}
I wanted to get User Created Folder names.. this is my first Outlook AddIn,If you can provide answer with explanation.it's help me..
ns, maybe that is the problem. I do not see anything otherwise. – Justin Pihony Feb 12 at 15:31