full file information

2013-02-26 Thread Michael Dinowitz
I've played with cfdirectory and cffile as well as their functional equivalents but none of them give me 'all' of the information available about a file. It'll give me the lastmodified date but not the created or accessed dates. Does anyone know of a cfx, java object, or something else that will

Re: full file information

2013-02-26 Thread Raymond Camden
getFileInfo() On Tue, Feb 26, 2013 at 5:57 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I've played with cfdirectory and cffile as well as their functional equivalents but none of them give me 'all' of the information available about a file. It'll give me the lastmodified date

Re: full file information

2013-02-26 Thread Michael Dinowitz
Only returns Lastmodified, not created or lastaccessed. On Tue, Feb 26, 2013 at 6:59 AM, Raymond Camden raymondcam...@gmail.comwrote: getFileInfo() On Tue, Feb 26, 2013 at 5:57 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I've played with cfdirectory and cffile as well as

Re: full file information

2013-02-26 Thread Billy Cravens
Java's NIO gives you that info, but requires JDK7. If you're on Windows, you could use the File class to get that info: http://msdn.microsoft.com/en-us/library/system.io.file.aspx If on Linux or other *nix, you can use cfexecute and bash stat command, and parse the output. Billy Cravens