On 2009-03-31, <[email protected]> wrote:
> URL: http://svn.apache.org/viewvc?rev=760390&view=rev
> Log:
> Set some attributes from the File
> public ZipArchiveEntry(File inputFile, String entryName) {
> this(entryName);
>+ setSize(inputFile.length());
>+ setTime(inputFile.lastModified());
> // TODO are there any other fields we can set here?
> }
setSize is dangerous here since it may very well > 0 for directories
on Unix like systems.
Stefan
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]