Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.Sfx Namespace / ExistingFileBehavior Enumeration


In This Topic
    ExistingFileBehavior Enumeration
    In This Topic
    Value which lets you determine the overwrite behavior exhibited by self-extracting zip files whenever files being extracted already exist in the destination folder.
    Syntax
    'Declaration
     
    Public Enum ExistingFileBehavior 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    'Usage
     
    Dim instance As ExistingFileBehavior
    public enum ExistingFileBehavior : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberValueDescription
    OverwriteAlways2Always overwrite existing files.
    OverwriteOlderOnly3Overwrite existing older files only.
    Prompt0Prompt the user to confirm how to proceed with the DialogMessages.Overwrite dialog. The user can select the Buttons.Yes button to overwrite the file, the Buttons.No button to skip the file, the Buttons.OverwriteAll button to overwrite the file and any subsequent files that already exist, and finally the Buttons.OverwriteNone button to skip the file and any other files that already exist.
    SkipAlways1Never overwrite existing files.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Zip.Sfx.ExistingFileBehavior

    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