.NET Components
Chilkat .NET Components for Email, Zip Compression, Encryption, XML, S/MIME, and Character Encoding Conversion

Back to Zip Class Summary

Zip::AppendFilesEx

Appends one or more files to the Zip object. The filePattern can use the "*" or "?" wildcard characters. "*" means 0 or more of any character, and "?" means any single character. Set recurse equal to True to recursively add all subdirectories, or False to only add files in the current directory. Other parameters are to control whether or not the full pathname is included with the Zip entry, or whether files with the Archive, Hidden, or System attributes are included. True = yes, False = no.

  Declarations  
    [Visual Basic]
Public Function AppendFilesEx(ByVal String filePattern , ByVal Boolean recurse , ByVal Boolean saveExtraPath , ByVal Boolean archiveOnly , ByVal Boolean includeHidden , ByVal Boolean includeSystem) As Boolean

[C#]
public bool AppendFilesEx(string filePattern , bool recurse , bool saveExtraPath , bool archiveOnly , bool includeHidden , bool includeSystem);

[C++]
public bool AppendFilesEx(String *filePattern , bool recurse , bool saveExtraPath , bool archiveOnly , bool includeHidden , bool includeSystem);

[JScript]
public function AppendFilesEx(String filePattern , Boolean recurse , Boolean saveExtraPath , Boolean archiveOnly , Boolean includeHidden , Boolean includeSystem) : Boolean
 
  Parameters  
   
filePattern
A filename or wildcarded file pattern specifying the file(s) to be added to the Zip.
recurse
If True, recursively descend directories to add an entire directory tree.
saveExtraPath
If True, save the full (absolute) path in the Zip.
archiveOnly
If True, only add files having the Archive attribute set.
includeHidden
If True, included files that have the Hidden attribute set.
includeSystem
If True, include files that have the System attribute set.
 

Copyright 2002, Chilkat Software, Inc. All Rights Reserved.