loop through an array of files, coldfusion code example
Example 1: coldfusion loop structure
for ( key in myStruct ) {
writeOutput( '#key#: #myStruct[key]#
' );
}
Example 2: coldfusion loop array
for ( item in myArray ) {
writeOutput( #item# & '
' );
}