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

<!---
	Unzip the zip archive into the directory
	named "unzipped_root". Instead of recursing
	through the entire archive, just unzip the
	root directory.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped_root/' )#"
	recurse="false"
	/>

For Cut-and-Paste