Hi
You can try this way.
int replyCode = ftp.sendCommand("mdtm", remoteFileName);
    if (replyCode == 213) {
     String s = ftpClient.getReplyString();
     //parse the string to get the time stamp and construct the Calender
object
    }

Thanks
Sarath

On 3/7/06, Diana Teplits <[EMAIL PROTECTED]> wrote:
>
> 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.
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Sarath K Ambadas
WebSphere Adapters, IBM India Software Labs,
Phone: +91-80-25044996
Mobile: +91 94483 48231

Reply via email to