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

<!---
	Unzip the all archived images of type JPG into
	the directory named "unzipped_images". By not
	storing the path of the entry, we will be unzipping
	all files into the root of the destination directory.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped_images2/' )#"
	filter="*.JPG"
	storepath="false"
	/>

For Cut-and-Paste