Description:- Deletes a file from its location on the server. <cffile action = "delete" file = "full pathname" > Attributes:- action:- This is a required…
Description:- Copies a file from one directory to another on the server. <cffile action = "copy" destination = "full pathname" source = "full pathname" attributes…
Description:- Appends text string to a text file on the server. <cffile action = "append" file = "full pathname" output = "string" addNewLine = "yes|no"…
Description:- After a file is uploaded, you can get status information using file upload parameters. To refer to parameters, you need to specify an alternate…
Description:- Copies a file to a directory on the server. Manages interactions with server files. <cffile> this function’s various purposes use require different attributes. <cffile…
Description:- The Application.cfc file defines application-wide settings and variables, as well as application event handlers. we can implement the following events through Application.cfc. Method/EventWhen runonApplicationStartThe…
Description:- isDefined( ) :- Evaluates a string value to determine whether the named variable exists. structKeyExists( ) :- Determines whether a specific key is present…
<!--- Tag Syntax ---> <cfset Fruit = "Apple"> <cfswitch expression="#Fruit#"> <cfcase value="Mango,Apple,Watermelon"> I love Mango and Apple and Watermelon. </cfcase> <cfcase value="Guava"> I like Guava.…