Description:- Determines whether a string is in valid JSON (JavaScript Object Notation) data interchange format or not. isJSON( value ); This function return type is…
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.…