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

<!---
	Unzip the archived images folder into the
	directory named "unzipped_images". By not storing
	the path of the entry, we will ensure that an
	"images" folder does not get created.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped_images/' )#"
	entrypath="images"
	recurse="false"
	storepath="false"
	/>

For Cut-and-Paste