Description:- Moves a file from one location to another on the server. <cffile action = "move" destination = "full pathname" source = "full pathname" attributes…
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…