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

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

For Cut-and-Paste