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.
<cffile action="upload"
filefield="#variables.FileName#"
destination="#Path#"
ACCEPT="image/jpg, image/pjpeg,image/gif, application/msword, image/bmp, image/tiff"
nameconflict="OVERWRITE">
<cffile action="upload"
filefield="#variables.FileName#"
destination="#Path#"
ACCEPT="image/jpg, image/pjpeg,image/gif, application/msword, image/bmp, image/tiff"
nameconflict="MakeUnique">
<cffile action = "rename"
source = "#Src#"
destination = "#Dest#"
attributes="normal">
<!--- define the name of a backup file --->
<cfset BackupFile = ListFirst(dest, ".") & "_" & DateFormat(Now(), "dd_mmm_yyyy") & "_" & TimeFormat(now(), "HHmm_tt") & "." & ListLast(dest, ".")>
<!--- save a copy of a pre-existing file --->
<cfif FileExists(Dest)>
<cffile action="rename"
source="#Dest#"
destination="#BackupFile#"
attributes="normal">
</cfif>
<!--- rename our new file --->
<cffile action="rename"
source="#Src#"
destination="#Dest#"
attributes="normal">