Learning ColdFusion 8: CFZip Part IV - Extracting Zip File Archives

<!---
	Create a zip archive of the data directory.
	By default, ColdFusion 8 will recurse the
	source directory, store the storage paths,
	and do to our use of Overwrite attribute, we
	will make sure we create a new zip archive.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/' )#"
	file="#ExpandPath( './data.zip' )#"
	overwrite="true"
	/>

For Cut-and-Paste