DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Motivations for Creating Filter and Merge Plugins for Apache JMeter With Use Cases
  • Introducing the MERGE Command in PostgreSQL 15
  • Improve Efficiency With Smaller Code Reviews
  • Techniques You Should Know as a Kafka Streams Developer

Trending

  • Why Round-Robin Won't Save You: Load Balancing Challenges in Data Streaming Services With Heterogeneous Traffic
  • Jakarta EE 12: Entering the Data Age of Enterprise Java
  • The Big Data Architecture Blueprint: Core Storage, Integration, and Governance Patterns
  • Testing AI-Infused Apps: A Dual-Layer Framework for AI Quality Assurance
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. DevOps and CI/CD
  4. How to Split Single PST File into Multiple PSTs & Merge Multiple PSTs using .NET

How to Split Single PST File into Multiple PSTs & Merge Multiple PSTs using .NET

By 
David Zondray user avatar
David Zondray
·
Jun. 24, 15 · Code Snippet
Likes (0)
Comment
Save
Tweet
Share
1.6K Views

Join the DZone community and get the full member experience.

Join For Free
This technical tip explains how to .NET developers can split and Merge PST files using Aspose.Email.  Aspose.Email API provides the capability to split a single PST file into multiple PST files of desired file size. It can also merge multiple PST files into a single PST file. Both the splitting and merging of PSTs operations can be tracked by adding events to these operations.  Aspose.Email for .NET is a set of components allowing developers to easily implement email functionality within their ASP.NET web applications, web services & Windows applications. It Supports Outlook PST, EML, MSG & MHT formats.
//Code sample for Splitting a Single PST into multiple PSTs

 [C#]

using (PersonalStorage pst = PersonalStorage.FromFile(@"D:\test\source.pst"))
{
    // The events subscription is an optional step for the tracking process only.
    pst.StorageProcessed += PstSplit_OnStorageProcessed;
    pst.ItemMoved += PstSplit_OnItemMoved;

    // Splits into pst chunks with the size of 5mb
    pst.SplitInto(5000000, @"D:\test\chunks\");
}

 
[VB.NET]

Using pst As PersonalStorage = PersonalStorage.FromFile("D:\test\source.pst")
	' The events subscription is an optional step for the tracking process only.
	pst.StorageProcessed += PstSplit_OnStorageProcessed
	pst.ItemMoved += PstSplit_OnItemMoved

	' Splits into pst chunks with the size of 5mb
	pst.SplitInto(5000000, "D:\test\chunks\")


//Code sample for Merging of Multiple PSTs into a single PST
 
[C#]

totalAdded = 0;

using (PersonalStorage pst = PersonalStorage.FromFile(@"D:\test\destination.pst"))
{
    // The events subscription is an optional step for the tracking process only.
    pst.StorageProcessed += PstMerge_OnStorageProcessed;
    pst.ItemMoved += PstMerge_OnItemMoved;

    // Merges with the pst files that are located in separate folder.
    pst.MergeWith(Directory.GetFiles(@"D:\test\sources\"));
    Console.WriteLine("Total messages added: {0}", totalAdded);
}

[VB.NET]

totalAdded = 0

Using pst As PersonalStorage = PersonalStorage.FromFile("D:\test\destination.pst")
	' The events subscription is an optional step for the tracking process only.
	pst.StorageProcessed += PstMerge_OnStorageProcessed
	pst.ItemMoved += PstMerge_OnItemMoved

	' Merges with the pst files that are located in separate folder.
	pst.MergeWith(Directory.GetFiles("D:\test\sources\"))
	Console.WriteLine("Total messages added: {0}", totalAdded)
End Using

//Code sample Merging Folders from another PST

[C#]

totalAdded = 0;

using (PersonalStorage destinationPst = PersonalStorage.FromFile(@"D:\test\destination.pst"))
using (PersonalStorage sourcePst = PersonalStorage.FromFile(@"D:\test\source.pst"))
{
    FolderInfo destinationFolder = destinationPst.RootFolder.AddSubFolder("FolderFromAnotherPst");
    FolderInfo sourceFolder = sourcePst.GetPredefinedFolder(StandardIpmFolder.DeletedItems);

    // The events subscription is an optional step for the tracking process only.
    destinationFolder.ItemMoved += destinationFolder_ItemMoved;

    // Merges with the folder from another pst.
    destinationFolder.MergeWith(sourceFolder);

    Console.WriteLine("Total messages added: {0}", totalAdded);
}

[VB.NET]

totalAdded = 0

Using destinationPst As PersonalStorage = PersonalStorage.FromFile("D:\test\destination.pst")
	Using sourcePst As PersonalStorage = PersonalStorage.FromFile("D:\test\source.pst")
		Dim destinationFolder As FolderInfo = destinationPst.RootFolder.AddSubFolder("FolderFromAnotherPst")t
		Dim sourceFolder As FolderInfo = sourcePst.GetPredefinedFolder(StandardIpmFolder.DeletedItems)

		' The events subscription is an optional step for the tracking process only.
		destinationFolder.ItemMoved += destinationFolder_ItemMoved

		' Merges with the folder from another pst.
		destinationFolder.MergeWith(sourceFolder)

		Console.WriteLine("Total messages added: {0}", totalAdded)
	End Using
End Using
//Helping Methods
void destinationFolder_ItemMoved(object sender, ItemMovedEventArgs e)
    {
        totalAdded++;
    }

    void PstMerge_OnStorageProcessed(object sender, StorageProcessedEventArgs e)
    {
        Console.WriteLine("*** The storage is merging: {0}", e.FileName);
    }

    void PstMerge_OnItemMoved(object sender, ItemMovedEventArgs e)
    {
        if (currentFolder == null)
        {
            currentFolder = e.DestinationFolder.RetrieveFullPath();
        }

        string folderPath = e.DestinationFolder.RetrieveFullPath();

        if (currentFolder != folderPath)
        {
            Console.WriteLine("    Added {0} messages to \"{1}\"", messageCount, currentFolder);
            messageCount = 0;
            currentFolder = folderPath;
        }

        messageCount++;
        totalAdded++;
    }

    void PstSplit_OnStorageProcessed(object sender, StorageProcessedEventArgs e)
    {
        if (currentFolder != null)
        {
            Console.WriteLine("    Added {0} messages to \"{1}\"", messageCount, currentFolder);
        }

        messageCount = 0;
        currentFolder = null;
        Console.WriteLine("*** The chunk is processed: {0}", e.FileName);
    }

    void PstSplit_OnItemMoved(object sender, ItemMovedEventArgs e)
    {
        if (currentFolder == null)
        {
            currentFolder = e.DestinationFolder.RetrieveFullPath();
        }

        string folderPath = e.DestinationFolder.RetrieveFullPath();

        if (currentFolder != folderPath)
        {
            Console.WriteLine("    Added {0} messages to \"{1}\"", messageCount, currentFolder);
            messageCount = 0;
            currentFolder = folderPath;
        }

        messageCount++;
    } 

Merge (version control)

Opinions expressed by DZone contributors are their own.

Related

  • Motivations for Creating Filter and Merge Plugins for Apache JMeter With Use Cases
  • Introducing the MERGE Command in PostgreSQL 15
  • Improve Efficiency With Smaller Code Reviews
  • Techniques You Should Know as a Kafka Streams Developer

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook