Learning ColdFusion 8: CFZip Part V - Deleting Zip File Archives

<!---
	Delete any manual files that are located
	anywhere within the zip archive. Also delete
	the entire images directory.
--->
<cfzip
	action="delete"
	file="#ExpandPath( './data.zip' )#">
 
	<!--- Delete manual files. --->
	<cfzipparam filter="manual*" />
 
	<!--- Delete the images directory. --->
	<cfzipparam entrypath="images" />
 
</cfzip>

For Cut-and-Paste