Hello
Simple questions:
- PST Password: PersonalStorage.Store.IsPasswordProtected simply will reveal if .pst has password?
If so, what’s the code here:
https://docs.aspose.com/email/net/working-with-pst-password-protection-properties/
Check for Password protection: The MapiPropertyTag.PR_PST_PASSWORD value from the MapiPropertyTag class is used to check if a file is password protected…
What’s the difference, and which one to use?
-
Here officially says that only .pst can be password protected:
https://support.microsoft.com/en-us/office/change-the-password-for-an-outlook-data-file-pst-a2eeefc2-aca4-49f9-9761-10e295e9fb85
But I’ve seen some .ost password remover tools on Google, what’s going on? Did you ever encounter a password protected .ost? Technically possible? -
CanWrite, what’s this exactly? Just based on the file is being read-only or on some media like DVD that cannot be written to? OR; there’s some internal property which write-protect the PST?
https://reference.aspose.com/email/net/aspose.email.storage.pst/personalstorage/canwrite/ -
Five properties in the PersonalStorage:
https://reference.aspose.com/email/net/aspose.email.storage.pst/personalstorage/#properties
CanWrite/Format/IsUnicode/RootFolder/Store
Which ones are available to both PST and OST? I think not all those five properties are available for .ost too, am I right or not? -
MergeWith(Stream 1 + Stream 2):
https://reference.aspose.com/email/net/aspose.email.storage.pst/personalstorage/mergewith/
Merge 2 different .pst from different accounts to 1 single .pst?
You’ve got a code sample for this task?
(can merge .ost files too?)
Thanks