User Guide
Chapter 2: ColdFusion Functions 355
GetBaseTemplatePath
Returns the fully specified path of the base template.
See also GetCurrentTemplatePath, FileExists and ExpandPath.
Syntax GetBaseTemplatePath()
Example <!--- This example uses GetBaseTemplatePath to show
the template path of the current page --->
<HTML>
<HEAD>
<TITLE>
GetBaseTemplatePath Example
</TITLE>
</HEAD>
<BODY>
<H3>GetBaseTemplatePath Example</H3>
<P>The template path of the current page is:
<CFOUTPUT>#GetBaseTemplatePath()#</CFOUTPUT>
</BODY>
</HTML>