Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip Namespace / ZipArchive Class / SplitNameFormat Property


In This Topic
    SplitNameFormat Property
    In This Topic
    Gets or sets the naming convention the split zip file parts will follow when the zip file is created or the next time it is updated.
    Syntax
    'Declaration
     
    Public Property SplitNameFormat As SplitNameFormat
    'Usage
     
    Dim instance As ZipArchive
    Dim value As SplitNameFormat
     
    instance.SplitNameFormat = value
     
    value = instance.SplitNameFormat
    public SplitNameFormat SplitNameFormat {get; set;}

    Property Value

    A SplitNameFormat value representing the naming convention the split zip file parts will follow when the zip file is created or the next time it is updated. By default SplitNameFormat is set to None, however if a ZipArchive is created around an existing split zip file, the format that was used will be automatically detected.
    Remarks

    The naming convention will be followed when creating split zip files as well as when creating spanned zip files.

    If set to None the DiskRequired event must be handled to provide the custom naming convention.

    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