I have just joined an IT company & started working with ColdFusion. My Manager wants me to write code in ColdFusion which:
- Will scan any directory (say
c:\cf\
) which contains hundreds of files including jQuery files, cfm files etc. and give the counts of such files (we can manually select which file type to show).
I wrote this code:
<cfdirectory
action="list"
directory="direcoty path"
name="Files"
recurse = "yes"
filter="*.*" />
<cfoutput>No of Java Script: #files.recordCount#</cfoutput>
but it shows one file type at a time. How can I check multiple file types at the same time?
For the first question, there's two approaches. Either loop over each of the different file types you're interested in, doing a cfdirectory for each.
Or you can do multiple file types in one CFDirectory, see http://www.bennadel.com/blog/1221-CFDirectory-Filtering-Uses-Pipe-Character-For-Multiple-Filters-Thanks-Steve-Withington-.htm