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

<!---
	Unzip the zip archive into the directory
	named "unzipped_flat". Instead of keeping the
	archive entry path structure, we are going to
	unzip all of the entries directly into the
	root of our target directory. As we merge the
	entries, we are going to overwrite them, thereby
	keeping only the last version of all the
	like-named files we come accross.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped_flat/' )#"
	storepath="false"
	overwrite="true"
	/>

For Cut-and-Paste