Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Directory listing (See related posts)

<cfdirectory action="LIST" directory="d:\www\docs\" name="dirlist">
<cfloop query="dirlist">
	<cfset outSize = dirlist.size / 1000>
	<a href="docs/#dirlist.name#" target="_blank">#dirlist.name#</a> 
	(#NumberFormat(outSize)# kB, 
	#lsdateformat(dirlist.dateLastModified, 'dddd d mmmm yyyy')#)
</cfloop>

Comments on this post

court3nay posts on Oct 28, 2005 at 02:44
to be pedantic, <cfset outSize = dirlist.size / 1024>
:)

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts