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

<!---
	To start with, we are zipping up a single file. This
	will result in a zip archive that contains one file
	in the root directory.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/images/smile.jpg' )#"
	file="#ExpandPath( './images.zip' )#"
	/>

For Cut-and-Paste