You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Diana Teplits <di...@traiana.com> on 2006/03/06 09:55:25 UTC

org/apache/commons/net/ftp/FTPFile.java - getTimestamp() method nullifies seconds and milliseconds

Hello.

 

I'll appreciate your help with the following problem:

 

My program is supposed to connect to ftp server from ftp client and get
files from predefined directory.

 

It works except one thing: 

 

FTPClient ftp = new FTPClient();

.......

.......

FTPFile[] filesArr = ftp.listFiles();

FTPFile ftpFile = filesArr[0];

Calendar date = ftpFile.getTimestamp();

 

Seconds and milliseconds inside date object have zero values instead of
the correct values.

Is there any way to get ftp file lastModified date including seconds and
milliseconds?

 

P.S.

 

I tried to use FTPClientConfig.setRecentDateFormatStr(..) in order to
solve this problem, but didn't succeed...

 

Thanks in advance,

 

Diana.