Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created June 24, 2024 06:58
Show Gist options
  • Save conholdate-gists/ef3ed6b00e269948343903aa712c955c to your computer and use it in GitHub Desktop.
Save conholdate-gists/ef3ed6b00e269948343903aa712c955c to your computer and use it in GitHub Desktop.
Convert OST to PST in Java
// Load the input OST file
com.aspose.email.PersonalStorage ost = com.aspose.email.PersonalStorage.fromFile(dataDir + "SampleOstFile.ost");
// Save the PST file
ost.saveAs("output.pst", com.aspose.email.FileFormat.Pst);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment