Link to home
Start Free TrialLog in
Avatar of Phil Chapman
Phil ChapmanFlag for United States of America

asked on

Zip Folders Using Chilkat Routines

Question:
How do you exclude a sub directory that is included in the selected directory

The code below excludes files

Dim sa As New CkStringArray
dim sTemp as string

 sTemp ="*.BAK;*.$$$;*.TMP"
sArray() = Split (sTemp,";")
For i = 0 To UBound(sArray)
    sa.Append Trim(sArray(i))
Next I

zip.SetExclusions sa

BUT HOW WOULD YOU EXCLUDE A DIRECTORY
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial