Skip to content
tghanem edited this page Jun 13, 2017 · 3 revisions

Overview

PST is a library project for processing Microsoft PST files written entirely in C#

Milestones

The library has two milestones.

  1. The first milestone is to create a full read-only version of the library.
  2. The second milestone is to add an API to write to the PST.

Unicode and ANSI Support

Currently the library supports Unicode PST files. Support for ANSI PST files will be added if it was requested.

Example

var pst = PSTFile.Open(File.OpenRead(@"c:\test.pst"));

var topOfOutlookDataFile = pst.GetRootMailboxFolder();

Clone this wiki locally