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

<!---
	When we zip the data directory, we are going to recurse
	through it and only zip files that are a common image
	extension. We are also overwriting the previous zip.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/' )#"
	file="#ExpandPath( './data.zip' )#"
	filter="*.JPG,*.GIF,*.PNG"
	overwrite="true"
	/>

For Cut-and-Paste