I need to get last modification time of a java resource. When I use
url.openConnection().getLastModified()
it returns the last modification time of the entire jar (same for all items inside), but I need modification time of particular files. The information is there (when I open the jar as a zip, I see the correct time at the particular files). Does someone know how to access it?
Thanks