adTempus API
ArcanaDevelopment.adTempus.Shared.FileOperations Namespace / FileOverwriteOption Enumeration


In This Topic
    FileOverwriteOption Enumeration
    In This Topic
    Option for handling file overwrite conflicts
    Syntax
    'Declaration
     
    
    Public Enum FileOverwriteOption 
       Inherits System.Enum
    public enum FileOverwriteOption : System.Enum 
    public enum class FileOverwriteOption : public System.Enum 
    Members
    MemberValueDescription
    Append5 The existing file is appended with the file being transferred
    NoOverwrite0 The existing file is not overwritten (the operation is skipped)
    Overwrite1 The existing file is overwritten
    OverwriteOlder2 The existing file is overwritten if it is older; otherwise the operation is skipped
    Update4 The existing file is updated from the file being transferred
    UseNewName3 A new name is generated for the file be transferred to avoid name conflicts
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.FileOperations.FileOverwriteOption

    See Also