Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip Namespace / SplitNameFormat Enumeration


    SplitNameFormat Enumeration
    Value representing the naming convention the split zip file parts will follow.
    Syntax
    'Declaration
     
    Public Enum SplitNameFormat 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
     
    'Usage
     
    Dim instance As SplitNameFormat
    Members
    MemberValueDescription
    None0The split zip parts will all carry the same name. This is the name passed at the construction of the ZipArchive. If the ZipArchive.SplitSize property is greater than 0, the ZipEvents.DiskRequired event must be handled to provided names for each split part of the zip file. This is the value to use when creating spanned zip files.
    PkZip2The split zip file parts will use the PkZip naming convention. The last split part will end with the .zip extension. The first will be named .zip.z01, .zip.z02 ... .zip.100, .zip.101, etc. When dealing with more than 99 split zip file parts, this convention is only compatible with PkZip.
    WinZip3The split zip file parts will use the WinZip naming convention. The last split part will end with the .zip extension. The first will be named .z01, .z02 ... .z100, .z101, etc. This convention is compatible with both WinZip and PkZip.
    XceedZipActiveX1The split zip file parts will use the same naming convention as the ActiveX version of Xceed Zip. The first split part will have the .zip extension. Subsequent parts will be named .z02, .z03, .z04 ... .z100, .z101, etc. This convention is not compatible with PkZip or WinZip since they require that the last part have the .zip extension and not the first.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Zip.SplitNameFormat

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also