Learning ColdFusion 8: CFZip Part III - Reading Zip File Entries

<!---
	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. --->
	<cfzipparam filter="*.txt" />
 
	<!--- Only get *red* files. --->
	<cfzipparam filter="*red*" />
 
</cfzip>

For Cut-and-Paste