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

<!---
	Create a zip archive that contains a multiple
	entries. We are going to overwrite any previously
	existing archive of the same name.
--->
<cfzip
	action="zip"
	file="#ExpandPath( './data.zip' )#"
	overwrite="true">
 
	<!---
		Zip the entire images directory at the given
		source path.
	--->
	<cfzipparam
		source="#ExpandPath( './data/images/' )#"
		/>
 
</cfzip>

For Cut-and-Paste