Hello,
In the next code I try to create two standard folders in the same pst. The second create throws me and
exception that the standard folder already exists.
When I do it in Outlook there is not problem with that (2contacts.jpg)
using (PersonalStorage pst = PersonalStorage.Create("testpst.pst", FileFormatVersion.Unicode))
{
FolderInfo contacts = pst.CreatePredefinedFolder("Contacts", StandardIpmFolder.Contacts);
FolderInfo contacts2 = pst.CreatePredefinedFolder("Contacts2", StandardIpmFolder.Contacts);
}
Am I doing something wrong? Or you do not support it ?