Convert Outlook Offline Folder File (OST) to Other Formats

Aspose.Email - Convert OST to Other Formats

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);

Download Running Code

Download Sample Code