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

<!---
	Unzip the all archived images of type JPG located
	in the images folder into the directory named
	"unzipped_images3". 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_images3/' )#"
	storepath="false">
 
	<!--- Unzip the images folder. --->
	<cfzipparam
		entrypath="images"
		recurse="false"
		filter="*.JPG"
		/>
 
</cfzip>

For Cut-and-Paste