Describes how the archive file will be stored on disk.
[C#]
public ComponentAce.Compression.Archiver.SpanningMode SpanningMode { get; set; }
public enum SpanningMode
{
None,
Spanning,
Splitting
}
[VB.NET]
Public Property SpanningMode As SpanningMode
Public Enum SpanningMode
None = 0
Spanning = 1
Splitting = 2
End Enum
Description
SpanningMode determines how the archive file will be stored on disk: as a single file, as multiple files or it will be stored on removable disks. SpanningOptions property determines how the archive file will be splitted or spanned.
SpanningMode can be set to any of the following values:
Value
|
Meaning
|
None
|
The archive will be stored as a single OS file.
|
Spanning
|
The archive file will be stored on removable disks.
|
Splitting
|
The archive will be stored as multiple OS files.
|