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

<!---
	Read the readme.txt file directly into a
	ColdFusion string variable.
--->
<cfzip
	action="read"
	file="#ExpandPath( './data.zip' )#"
	entrypath="documents/readme.txt"
	variable="strData"
	/>
 
<!--- Output the file contents. --->
#strData#

For Cut-and-Paste