Learning ColdFusion 8: CFZip Part I - Zipping Files And Directories With CFZip

<!---
	Zip the funny image into the nested goofy subdirectory of
	the existing archive.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/images/funny.jpg' )#"
	file="#ExpandPath( './images.zip' )#"
	prefix="images/goofy"
	/>

For Cut-and-Paste