adTempus API
ArcanaDevelopment.adTempus.Shared.FileOperations Namespace / FileCompressionSettings Class / CreateSubdirectoryForArchive Property


In This Topic
    CreateSubdirectoryForArchive Property
    In This Topic
    Determines whether a subdirectory will be created for each archive being uncompressed.
    Syntax
    'Declaration
     
    
    <ExtensionMemberAttribute()>
    <DataMemberAttribute()>
    Public Property CreateSubdirectoryForArchive As Boolean
    [ExtensionMember()]
    [DataMember()]
    public bool CreateSubdirectoryForArchive {get; set;}
    [ExtensionMember()]
    [DataMember()]
    public:
    property bool CreateSubdirectoryForArchive {
       bool get();
       void set (    bool value);
    }
    Remarks
    If CreateSubdirectoryForArchive is True, a directory will be created under the directory specified in TargetName, named with the base name of the archive (without extension). For example, if TargetName is "c:\temp" and the archive being extracted is "files1.zip", the files from the ZIP will be extracted to "c:\temp\files1\". This is useful when multiple archives are being processed and may have files with the same name.
    See Also