Size of a directory

2003-09-09 Thread Ryan Mitchell
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

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Size of a directory

2003-09-09 Thread Jeff Garza
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 so 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


Re: Size of a directory

2003-09-09 Thread Ryan Mitchell
Cool thanks - thanks a nice solution.

If possible I'd like to do it without com, not being picky, I just run my
code on more than one server (and more than one OS) :o)

On 9/9/03 22:47, Jeff Garza [EMAIL PROTECTED] wrote:

 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 so 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