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

<!---
	Zip the entire data directory. This time, we are not going
	to store the original file paths. This will get ColdFusion
	to store all files in the root directory of the zip
	archive. We are also overwriting the previous zip.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/' )#"
	file="#ExpandPath( './data.zip' )#"
	storepath="false"
	overwrite="true"
	/>

For Cut-and-Paste