Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfobject
type="COM"
name="objZip"
class="zbitz.zzip"
action="CREATE"
context="INPROC">
<cfscript>
unzipDir = "C:\Windows\temp\";
unzipFile = REQUEST.Upload_Dir & "test.zip";
/* Here's where we're calling the component's properties and methods: */
objZip.Recursive = "true";
result = objZip.UnzipFile(unzipFile,unzipDir);
</cfscript>