> Is is possible to get the file size and date last modified 
> for results using CFSEARCH?

I don't think there's any way to get that information directly from Verity,
but there's nothing to stop you from finding the information on the
filesystem after you've retrieved a set of matching files from your search.
If you're using Windows, you could use the COM interface to the filesystem,
like this:

<cfscript>
strFile = "d:\somefile.txt";
fso = CreateObject("COM", "Scripting.FileSystemObject");
f = fso.GetFile(strFile);
WriteOutput(DateFormat(f.DateCreated));
</cfscript>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to