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

<!---
	Unzip the zip archive into the directory
	named "unzipped". The unzipped directory must
	exists before we perform this action.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped/' )#"
	/>

For Cut-and-Paste