<!--- Create a zip archive that contains a single file. We are going to overwrite any previously existing archive of the same name. ---> <cfzip action="zip" file="#ExpandPath( './data.zip' )#" overwrite="true"> <!--- Add a single file. The file will be stored in the archive as the root directory with the same file name it already has (readme.txt). ---> <cfzipparam source="#ExpandPath( './data/documents/readme.txt' )#" /> </cfzip>