SplitArchiveSaveOptions

SplitArchiveSaveOptions constructor

Instantiates settings for saving a multi-volume zip archive.

public SplitArchiveSaveOptions(string fileName, uint segmentSize)
ParameterTypeDescription
fileNameStringName for volumes. May be with or without .zip extension.
segmentSizeUInt32Size of volume.

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment size is less than 65536 bytes.

Remarks

Some volumes may be less than segmentSize. In most cases the last segment will be less but rarely regular segments might be too.

Names of files will be as follows: fileName.z01, fileName.z02, …, fileName.z(n-1), fileName.zip.

See Also