Creating ColdFusion Components In Parent Directories (From Sub Directories) Without Mapped Paths

<cffunction
	name="CreateCFC"
	access="public"
	returntype="any"
	output="false"
	hint="Creates a CFC Creation proxy. Does NOT initialize the component, only creates it.">
 
	<!--- Define arguments. --->
	<cfargument name="Path" type="string" required="true" />
 
	<!--- Return the created component. --->
	<cfreturn
		CreateObject(
			"component",
			("www_cfc." & ARGUMENTS.Path)
			)
		/>
</cffunction>

For Cut-and-Paste