Learning ColdFusion 8: Defining Tags With AttributeCollection

<!---
	Using the traditional ColdFusion tag structure,
	we would define all the required attributes as
	part of the tag itself.
--->
<cffile
	action="COPY"
	source="#ExpandPath( './girl.jpg' )#"
	destination="#ExpandPath( './girl2.jpg' )#"
	/>

For Cut-and-Paste