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

<!---
	Zip the mud monster image into the images archive.
	If the archive already exists, we are going to completely
	overwrite it with this new archive.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/images/mud_monster.jpg' )#"
	file="#ExpandPath( './images.zip' )#"
	overwrite="true"
	/>

For Cut-and-Paste