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.
