[
https://issues.apache.org/jira/browse/NET-253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12670573#action_12670573
]
Jignesh Patel commented on NET-253:
-----------------------------------
Thank you Rory for your quick response.
Before I look code in UnixFTPEntryParser.java, I would like to comment on your
advice - result of "ls" command.
What I have noticed that, the "ls" command displays only file names. However
"dir" command displays more columns for each file entry. I can see only date
part (format MMM d yyyy - e.g. Mar 26 2007) for each file entry.
Does this indicate that I would not get hour/min fields if I use
getTimestamp()? Do I need to configure this on FTP Server software so that time
details are also displayed when "dir" command is used?
Please suggest.
Jignesh
> How to get time values (hour, min, sec) using FileFTP.getTimestamp() method
> ---------------------------------------------------------------------------
>
> Key: NET-253
> URL: https://issues.apache.org/jira/browse/NET-253
> Project: Commons Net
> Issue Type: Task
> Affects Versions: 2.0
> Environment: Windows Vista Business, java version "1.6.0_11"
> Reporter: Jignesh Patel
>
> Hello,
> I am using commons-net-2.0 in my application to access FTP server.
> My aim is to get value of "last modified date/time" value for any file
> present on FTP Server.
> The FTP Server resides at different location and I don't have direct access
> to it.
> Beloew are some lines I can see when I connect to FTP Server using ftp client
> software.
> 220 <server-name> X2 WS_FTP Server 5.0.4 (2790816660)
> USER <userid>
> 331 Password required
> PASS **********
> 230 user logged in
> SYST
> 215 UNIX
> Though it was listed "UNIX", I confirmed with my team that actual operating
> system on FTP Server is Windows 2000.
> To achieve my aim, I used getTimestamp() method of FileFTP class.
> I have used default settings. Even I have not configured FTP server using
> FTPClientConfig.
> The problem is - the Calendar object returned by invoking getTimestamp()
> method only contains correct date (day, month & year) value. It does not
> contain time parts (hour, min, sec, etc.). When I tried to print date in
> yyyy-MM-dd HH:mm:ss format, it printed zeros for HH, mm & ss parts (e.g.
> 2007-03-26 00:00:00). Any idea on how to get date value value along with time
> parts? Am I missing some other configurations?
> Note: If above option fails, I may plan to use getModificationTime() method
> of FTPClient class.
> Thank you,
> Jignesh
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.