Convert Outlook Offline Folder File (OST) to Other Formats
Contents
[
Hide
]
Aspose.Email - Convert OST to Other Formats
Microsoft Outlook creates PST file for email storage when you use POP3 or IMAP mail servers to download messages. It creates an OST file when you use Microsoft Exchange as your mail server. OST supports larger file sizes compared to PST.
Aspose.Email makes it possible to convert an OST file to PST with a single line of code. Similarly, OST file can be created from PST file using the same line of code with the FileFormat enumerator.
Java
PersonalStorage ost = PersonalStorage.fromFile(dataDir + "outlook.ost");
ost.saveAs(dataDir + "AsposeOST-PST.pst", FileFormat.Pst);