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

<!---
	Unzip the the documents and images archive
	folder into the directory named "unzipped3".
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped3/' )#"
	overwrite="true">
 
	<!--- Unzip the documents folder. --->
	<cfzipparam
		entrypath="documents"
		/>
 
	<!--- Unzip the images folder. --->
	<cfzipparam
		entrypath="images"
		filter="*.JPG"
		/>
 
</cfzip>

For Cut-and-Paste