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

<!---
	Zip the entire data directory but this time let's not
	recurse the directory. This will only zip the files that
	are in the root of the source directory. We are also
	overwriting the previous zip.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/' )#"
	file="#ExpandPath( './data.zip' )#"
	recurse="false"
	overwrite="true"
	/>

For Cut-and-Paste