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


In This Topic
    SplitNameFormat Enumeration
    In This Topic
    Value representing the naming convention the split zip file parts will follow.
    Syntax
    'Declaration
     
    
    Public Enum SplitNameFormat 
       Inherits System.Enum
       Implements System.IComparable, System.IConvertible, System.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

    Supported Frameworks

    .NET: net5.0, net5.0-windows, net6.0, net6.0-macos, net6.0-windows, net7.0, net7.0-macos, net7.0-windows, net8.0, net8.0-browser, net8.0-macos, net8.0-windows, net9.0, net9.0-browser, net9.0-macos, net9.0-windows, net10.0, net10.0-browser, net10.0-macos, net10.0-windows.

    .NET Standard: netstandard2.0, netstandard2.1

    .NET Framework: net20, net35, net40, net403, net45, net451, net452, net46, net461, net462, net463, net47, net471, net472, net48, net481.

    See Also