CFDirectory Filtering Uses Single Character Wild Card

<!--- Get all files. --->
<cfdirectory
	action="list"
	directory="#ExpandPath( './' )#"
	listinfo="name"
	name="qFile"
	/>
 
<!--- Output file list. --->
<cfdump
	var="#qFile#"
	label="All Files"
	/>
 
<br />
 
<!---
	Get files that have only THREE characters followed by
	and extension type.
--->
<cfdirectory
	action="list"
	directory="#ExpandPath( './' )#"
	listinfo="name"
	filter="???.*"
	name="qFile"
	/>
 
<!--- Output file list. --->
<cfdump
	var="#qFile#"
	label="File List With Three Characters"
	/>

For Cut-and-Paste