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

<!---
	Read the zip archive file into a ColdFusion query.
	By not letting the list recurse, we are only going
	to be getting entries in the root directory.
--->
<cfzip
	action="list"
	file="#ExpandPath( './data.zip' )#"
	name="qFile"
	recurse="false"
	/>

For Cut-and-Paste