Iâm working as a freelancer and creating different types of projects on C# language. From last few days, Iâm handling a project in which I have to open .OST file in C#. For doing such things, I have written the following code:
Code:
private void CreateInboxSubFolder(Outlook.Application OutlookApp)
{
Outlook.NameSpace nameSpace = OutlookApp.GetNamespace("MAPI");
Outlook.MAPIFolder folderInbox = nameSpace.GetDefaultFolder(
Outlook.OlDefaultFolders.olFolderInbox);
Outlook.Folders inboxFolders = folderInbox.Folders;
Outlook.MAPIFolder subfolderInbox = null;
try
{
subfolderInbox = inboxFolders.Add("InboxSubfolder",
Outlook.OlDefaultFolders.olFolderInbox);
}
catch (COMException exception)
{
if (exception.ErrorCode == -2147352567)
// Cannot create the folder.
System.Windows.Forms.MessageBox.Show(exception.Message);
}
if (subfolderInbox != null) Marshal.ReleaseComObject(subfolderInbox);
if (inboxFolders != null) Marshal.ReleaseComObject(inboxFolders);
if (folderInbox != null) Marshal.ReleaseComObject(folderInbox);
if (nameSpace != null) Marshal.ReleaseComObject(nameSpace);
}
After executing these code on C# programming, I get an error message ErrorCode=-2147352567. To sort out this error I have searched over p2p Wrox forum and found no thread.
http://p2p.wrox.com/c-c-4/
So, I have searched over the Internet and found few useful resources. But Iâm confused which will fix my programming error.
https://community.hortonworks.com/qu...-language.html
https://www.nopcommerce.com/boards/t...ing-c-net.aspx
https://www.stellarinfo.com/convert-ost-to-pst.php
https://codepad.co/snippet/dyjIh4PQ
Please guide.