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

<!---
	Read the zip archive file into a ColdFusion query.
	Limit the reading to image files.
--->
<cfzip
	action="list"
	file="#ExpandPath( './data.zip' )#"
	name="qFile"
	filter="*.JPG"
	/>

For Cut-and-Paste