SplitInto
PersonalStorage.SplitInto method (1 of 2)
Splits the pst storage into less sized parts.
public void SplitInto(long chunkSize, string path)
Parameter |
Type |
Description |
chunkSize |
Int64 |
The approximate size of a chunk in bytes. |
path |
String |
The folder path where chunks will be created. |
Exceptions
exception |
condition |
ArgumentException |
Throws when the path parameter is null or empty. |
ArgumentException |
Throws when the chunk size is less then the minimum size of pst file. |
See Also
PersonalStorage.SplitInto method (2 of 2)
Splits the pst storage based on criteria.
public void SplitInto(IList<MailQuery> criteria, string path)
Parameter |
Type |
Description |
criteria |
IList`1 |
The collection of MailQuery that represents criteria of pst splitting. |
path |
String |
The folder path where chunks will be created. |
Exceptions
exception |
condition |
ArgumentException |
Throws when the path parameter is null or empty. |
See Also