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

<!---
	Zip the entire data directory. By letting ColdFusion
	use the default values, we should end up with a zip
	archive that mirrors the path structure of the
	directory we are zipping.
--->
<cfzip
	action="zip"
	source="#ExpandPath( './data/' )#"
	file="#ExpandPath( './data.zip' )#"
	/>

For Cut-and-Paste