I am writing a manifest.xml
file during an Ant build for an OpenCMS project.
I need to be able to pull up a file\'s create date, and last modified date
Problem is the standard Java File object only supports a method for returning the last modified date:
The problem is addressed in Java 7, using the new NIO classes:
Obviously to take advantage of this in ANT you'd need to write a custom task or embed a script.