ColdFusion 9.0 Resources |
cfzipDescriptionManipulates ZIP and Java Archive (JAR) files. In addition to the basic zip and unzip functions, use the cfzip tag to delete entries from an archive, filter files, read files in binary format, list the contents of an archive, and specify an entry path used in an executable JAR file. Syntaxdelete <cfzip required action = "delete" file = "absolute pathname" optional entrypath = "full pathname" filter = "file filter" recurse = "yes|no"> list <cfzip required action = "list" file = "absolute pathname" name = "recordset name" optional filter = "file filter" recurse = "yes|no" showDirectory= "yes|no"> read <cfzip required action = "read" entrypath = "full pathname" file = "absolute pathname" variable = "variable name" optional charset = "encoding type"> readBinary <cfzip required action = "readBinary" entrypath = "full pathname" file = "absolute pathname" variable = "variable name"> unzip <cfzip required action = "unzip" destination = "destination directory" file = "absolute pathname" optional entrypath = "full pathname" filter = "file filter" overwrite = "yes|no" recurse = "yes|no" storePath = "yes|no"> zip <cfzip required file = "absolute pathname" One of the following: source = "source directory" <cfzipparam source = "source directory" ...> optional action = "zip" filter = "file filter" overwrite = "yes|no" prefix = "string" recurse = "yes|no" storePath = "yes|no"> Note: You can
specify this tag’s attributes in an attributeCollection attribute
whose value is a structure. Specify the structure name in the attributeCollection attribute
and use the tag’s attribute names as structure keys.
Attributes
UsageUse the cfzip tag to zip and unzip files and manipulate existing ZIP or JAR files in ColdFusion. You can use the cfzip tag independently or with one or more cfzipparam tags to manipulate multiple files or directories. The cfzip tag is the parent tag of the cfzipparam tag. The ZIP format is the standard format for file archiving and compression. The JAR format is based on the ZIP format. JAR files are platform-independent. Note: The cfzip tag does not create directories. If
you specify a directory that does not exist, ColdFusion generates
an error.
Use the following syntax to specify an in-memory file or directory in any attribute that takes a path. In-memory files are not written to disk and speed processing of transient data. ram:///filepath The filepath can include multiple directories, for example ram:///petStore/images/dogImages.zip. You must create the directories in the path before you specify the file. For more information on using in-memory files, see Optimizing transient files in the Developing ColdFusion Applications. delete actionUse the delete action to delete entries from a ZIP or JAR file. <!--- This example shows how to delete all the properties in a JAR file. ---> <cfzip file="e:\work\soure.jar" action="delete" filter="*.properties, *.props"> <!--- This example shows how to delete all of the entries in a ZIP file with a JPG, GIF, or PNG extension, including entries in subdirectories. ---> <cfzip file="c:\myApp\images.zip" action="delete" filter="*.jpg, *.gif, *.png" recurse="yes"> <!--- This example shows how to delete the "images" subdirectory (and its contents) from the "myApp.zip" file. ---> <cfzip action="delete" file="c:\myApp.zip" entrypath="images"> <!--- This example shows how to delete all Java source entries in the "work/source" directory and images (*.gif, *.jpg, *.jpeg) from a JAR file. ---> <cfzip file="/downloads/source.jar" action="delete"> <cfzipparam entrypath="work/source" filter="*.java"> <cfzipparam filter="*.gif,*.jpg,*.jpeg"> </cfzip> list actionUse the list action to list the entries of a ZIP or JAR file. The following table shows the types of information you can retrieve for entries in the archive:
You can use the cfdump tag to list all of the information in a ZIP or JAR file, as the following example shows: <cfzip file="c:/myApp.jar" action="list" name="entry"> <cfdump var="#entry#"> You can use the cfoutput tag to list individual fields for the entries in an archive, as the following example shows: <cfzip file="c:\zipTest\Test.zip" action="list" name="entry"> <table> <cfoutput> <tr> <td><b>Entry Name:</b> #entry.name#</td> <td><b>Last Modified Date:</b> #dateFormat(entry.dateLastModified)#,#timeFormat(entry.dateLastModified)#</td> <td><b>Size (uncompressed):</b> #numberFormat(entry.size/1000)# KB <br></td> </cfoutput> </tr> </table> read actionUse the read action to read the content of the ZIP or JAR file entry in human-readable format. The read action uses the charset value to create the string. <!--- This example shows how to read a text file in a JAR file. ---> <cfzip action="read" file="/home/sam/work/util.jar" entrypath="info.txt" variable="text"> readBinary actionUse the readBinary action to read the content of a ZIP or JAR file in binary format. <!--- This example shows how to use the readBinary action to copy a ZIP entry from one ZIP file to another ZIP file. ---> <cfzip file="c:\work\instr.zip" action="readBinary" entryPath="com/test/abc.jpg" variable="xyz"> <cfzip file="c:\work\copy_instr.zip"> <cfzipparam entryPath="com/test/xyz.jpg" content="#xyz#"> </cfzip> unzip actionUse the unzip action to extract the entries from a ZIP or JAR file. <!--- This example shows how to extract the class files of a JAR file and save the files to a local drive. ---> <cfzip file="e:\work\tools.jar" action="unzip" filter="*.class" destination="c:\temp\tools\classes"/> <!--- This example shows how to extract files from a JAR file in multiple directories. ---> <cfzip file="e:\work\images.jar" action="unzip" destination="c:\images"> <cfzipparam entryPath="toWork\small"> <cfzipparam entryPath="final\large"> </cfzip> zip actionUse the zip action to create or update a ZIP or JAR file. This is the default action; you do not have to specify it explicitly. If you specify a ZIP or JAR file that does not exist, ColdFusion creates it. If the ZIP or JAR file exists, ColdFusion adds new entries from the source and updates existing entries if they have changed. If you set the overwrite attribute to yes, all of the entries in the ZIP or JAR file are replaced by the new content. <!--- This example shows how to zip the directory "c:\temp" into the ZIP file "e:\work\abc.zip". ---> <cfzip file="e:\work\abc.zip" source="c:\temp"> <!--- This example shows how to zip all the class files in a directory and add a subdirectory named "classes" to the JAR file entry name. ---> <cfzip file="e:\work\util.jar" action="zip" source="c:\src\util\" prefix="classes" filter="*.class"> <!---This example shows how to zip all of the log files in the ColdFusion directory and create a subdirectory called exception where zipped files are archived. <cfzip file="c:\zipTest\log2.zip" action="zip" source="c:\ColdFusion\" prefix="exception" filter="*.log"> <!--- This example shows how to overwrite all of the content of a ZIP file with the entries specified in the source. ---> <cfzip file="c:\currentApp.zip" source="c:\myApp\work" overwrite="yes"> ExampleThe following example shows how to zip image files chosen from a form and e-mail the ZIP file to the person requesting the images. The first ColdFusion page populates a pop-up menu with the names of artists generated from a database query: <!--- Create a query to extract artist names from the cfartgallery database. ---> <cfquery name="artist" datasource="cfartgallery"> SELECT FIRSTNAME || ' ' || LASTNAME AS FULLNAME,ARTISTS.ARTISTID FROM ARTISTS </cfquery> <!--- Create a form that lists the artists generated by the query. ---> <cfform action="zipArt_action.cfm" method="post"> <h3>Choose an Artist</h3> <p>Please choose an artist:</p> <cfselect name="artistName" query="artist" display="FULLNAME" value="ARTISTID" required="yes" multiple="no" size="8"> </cfselect> <br/><cfinput type="submit" name="submit" value="OK"> </cfform> The first action page displays the images by the selected artist, zips the files, and writes the ZIP file to a temporary directory. Also, it includes a form to e-mail the ZIP file: <!--- Create a query to extract artwork for the selected artist from the cfartgallery database. ---> <cfquery name="artwork" datasource="cfartgallery"> SELECT FIRSTNAME, LASTNAME, LARGEIMAGE FROM ARTISTS, ART WHERE ARTISTS.ARTISTID = ART.ARTISTID AND ARTISTS.ARTISTID=<cfqueryparam value="#form.artistName#"> ORDER BY ARTNAME </cfquery> <cfoutput> <p>You have chosen the work of #artwork.FirstName# #artwork.LastName#.</p> <cfset thisDir = ExpandPath(".")> <cfset imgDir = ExpandPath("..")> </cfoutput> <cfset xctr = 1> <table border="0" cellpadding="15" cellspacing="0" bgcolor="#FFFFFF"> <cfoutput query="artwork"> <cfif xctr mod 3 eq 1> <tr> </cfif> <!--- Use the IsImageFile function to verify that the image files extracted from the database are valid. Use the ImageNew function to create a ColdFusion image from valid image files. ---> <cfif IsImageFile("#imgdir#/cfdocs/images/artgallery/ #artwork.largeImage#")> <cfset myImage=ImageNew("#imgdir#/cfdocs/images/artgallery/ #artwork.largeImage#")> <td valign="top" align="center" width="200"> <cfset xctr = xctr + 1> <img src="#imgdir#/cfdocs/images/artgallery/#artwork.largeImage#"/> </td> <!---Zip the files by the specified artist. ---> <cfzip source="#imgDir#/cfdocs/images/artgallery/#artwork.LARGEIMAGE#" action="zip" file="#thisDir#/#artwork.lastname#.zip"> </cfif> </cfoutput> </tr> </table> <h3>Mail the ZIP File</h3> <p>Please enter your e-mail address so we can send you the ZIP file as an attachment.</p> <cfform action = "zipArt_action2.cfm" method="post"> Your e-mail address: <cfinput type = "Text" name = "MailTo"> <!--- Specify the required field. ---> <cfinput type = "hidden" name = "MailTo_required" value = "You must enter your email address"> <cfinput type="hidden" name="zipPath" value="#thisDir#/#artwork.lastname#.zip"> <p><cfinput type = "Submit" name = "OK" label="Mail"> </cfform> The second action page mails the ZIP file as an attachment: <h3>Mail the ZIP file</h3> <p>Your file has been mailed to you.</p> <cfset eMail="#form.MailTo#"> <cfset zipPath="#form.zipPath#"> <cfmail from="coldfusion@adobe.com" to="#eMail#" subject="see zipped attachment"> The images you requested are enclosed in a ZIP file. <cfmailparam file="#zipPath#"> </cfmail> |