<!--- Read the zip archive file into a ColdFusion query. Instead of reading all files in the directory, we are going to filter on several different masks using the nested child tag CFQueryParam. ---> <cfzip action="list" file="#ExpandPath( './data.zip' )#" name="qFile"> <!--- Only get text files and *red* files. ---> <cfzipparam filter="*.txt,*red*" /> </cfzip>