Description:- This function is used to get URL parameters from an existing ColdBox Link by providing the link handler name. <cfscript> private string function getUrlParam(…
Description:- This is used to delete a directory on disk or in memory if you have the required permissions to run this function. directoryDelete( path…
Description:- This is used to rename a directory on disk or in memory if you have the required permissions to run this function. directoryRename( oldPath,…
Description:- This is used to get the key list from a ColdFusion structure. structKeyList( structure, delimiter ); This function returns a list that consists of…
Description:- This is used to create a directory on disk or in memory. directoryCreate( path ); Attributes:- path:- This is a required attribute, the path of…
Description:- This is used to determine whether a directory exists either on disk or in memory. directoryExists( path ); This function returns a boolean value.…
Description:- This is used to get the specific name of the month from the given month_number fall. monthAsString( month_number, locale ); This function returns a string,…
Description:- This is used to get a specific part from a datetime object. datePart( datepart_argument, datetime_object ); This function returns a part of a date,…
Description:- This is used to decode an encoded HTML URL string. decodeFromURL( encoded_HTML_string ); Attributes:- string:- This is a required argument, the encoded string which needs…