Description:- This is used to filter the elements of an array. this will return an array after filtering. arrayFilter( array, function( item [,index, array] ){…
Description:- Copies all files sent to the page in an HTTP request to a directory on the server. <cffile action = "uploadAll" allowedExtensions = "comma-separated…
We can measure time needed to execute a block of code in ColdFusion using getTickCount() method. getTickCount() method returns a counter in milliseconds. Syntax: startTime…
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…