CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)

<!---
	Get all the files that are have either the name ben
	or anna in them. To separate out the values, we are
	going to use the pipe "|" character.
--->
<cfdirectory
	action="list"
	directory="#ExpandPath( './' )#"
	listinfo="name"
	filter="anna.*|ben.*"
	name="qFile"
	/>
 
<!--- Output file list. --->
<cfdump
	var="#qFile#"
	label="File List With Ben Or Anna"
	/>

For Cut-and-Paste