If this is on a Windows box, you could always use the FileSystemObject
to access the Drives and Folders collections...

<CFSCRIPT>
fs = CreateObject("COM", "Scripting.FileSystemObject");
Windows = fs.GetFolder("c:\windows");
WindowsSize = Windows.size;
</CFSCRIPT>
<CFOUTPUT>#WindowsSize# bytes</CFOUTPUT>

Works like a dandy for me... I'm sure there are ways to get this using
Java, but FSO is sooooo damn fast on Windows that it's a great option to
use.

HTH,

Jeff Garza
Manager, Phoenix CFUG
Certified ColdFusion MX Developer
[EMAIL PROTECTED] 


-----Original Message-----
From: Ryan Mitchell [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 09, 2003 2:28 PM
To: CF-Talk
Subject: Size of a directory


Hello

I'm trying to get the size of a directory including all subdirectories
included... Im on CFMX

Cfdirectory only returns the size of whats in the directory excluding
folders...

Is there a UDF or tag to do this?

TIA
Ryan


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Reply via email to