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

<!---
	Zip image file. If the zip archive already exists,
	we are going to add the image to that archive. If
	the archive does not yet exists, we will create a
	new zip archive.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/images/funny.jpg' )#"
	file="#ExpandPath( './images.zip' )#"
	/>

For Cut-and-Paste