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

<!---
	Unzip the mud_monster.jpg image into the directory
	named "unzipped_single". By not storing the path
	of the entry, we will make sure not to create the
	images subdirectory in our distination folder.
--->
<cfzip
	action="unzip"
	file="#ExpandPath( './data.zip' )#"
	destination="#ExpandPath( './unzipped_single/' )#"
	entrypath="images/mud_monster.jpg"
	storepath="false"
	/>

For Cut-and-Paste