; files to EXCLUDE from a Winzip archive

; I discovered this information by experiment.

; specific absolute filename with drive
E:\somedir\somefile.ext

; specific absolute filename without drive
; the drive of the directory specified on the WinZip command line is presumed, not the current working drive.
\somedir\someotherfile.ext

; specific relative filename, relative to directory specifed on the WinZip command line, not relative to current directory.
subdir\afile.txt

; extension, applies to all nested subdirs too
*.obj

; ? filename wildcard, applies to all subdirs too.
; If you said plain untouch.digest, it would apply only to the top level directory.
untouch.diges?

; ? directory wildcard, applies to all subdirs too.
Debu?

; relative directory, applies to top level dir only.
Release

; * directory wildcard, applies to all subdirs too
*\snippet\iframe\*.*

; relative directory name, applies to top level directory only
snippet\ser\*.*

; -30-