RE: Counting Mail Messages In A Folder

2003-10-14 Thread Gerry
al Message-   From: Jochem van Dieten [mailto:[EMAIL PROTECTED]   Sent: Tuesday, October 14, 2003 10:13 AM   To: CF-Talk   Subject: RE: Counting Mail Messages In A Folder   Gerry said:   >   > The structure is essentially a base folder (a "real" windows   > folder), named t

RE: Counting Mail Messages In A Folder

2003-10-14 Thread Jochem van Dieten
Gerry said: > > The structure is essentially a base folder (a "real" windows > folder), named the same as the individual's email address. Within > this folder are a varying number of files in the form: > foldername.mbx. So if you stored items from the CFTalk list in > "folder" named "ColdFusion", t

RE: Counting Mail Messages In A Folder

2003-10-14 Thread Gerry
ssistance and willingness to share your expertise with us ! -Gerry Gerard T. Pauline Mgr, Internet Applications & University WebMaster Computer Systems, DoIT Pace University   -Original Message-----   From: Craig Dudley [mailto:[EMAIL PROTECTED]   Sent: Tuesday, October 14, 2003 8:05 AM  

RE: Counting Mail Messages In A Folder

2003-10-14 Thread Craig Dudley
Are the messages actual files or are they stored in some sort of exchange like database? If they are actual files, then it should be easy using cfdirectory alone,  the windows file system as Brook suggested or even with java (java.io.File). You'll just need to done a little recursion inside t

Re: Counting Mail Messages In A Folder

2003-10-13 Thread Brook Davies
If you are using CFMX (maybe even prior versions - I am not sure, you can use the windows file system COM object to count the files and even get the total size etc. I am doing this on a project and it is working great. Try the below code, modify it for your needs. And I suggest doing some CFDUM