<!--- 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. Instead of storing it in the root directory, we are going to store it in a new, nested directory. ---> <cfzipparam source="#ExpandPath( './data/documents/readme.txt' )#" entrypath="manuals/_LOOK_HERE_FIRST_/readme.txt" /> </cfzip>