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.
<CFDIRECTORY action="list" directory="c:\test" FILTER="*.*" name="dircontents">
<CFIF dircontents.RecordCount GT 0>
<cfoutput query="dircontents">
<CFIF len(dircontents.name) GT 2>
<CFFILE action=delete file="c:\test\#dircontents.name#">
</CFIF>
</cfoutput>
</cfif>
Done!