The app I’m working with uses FTPClient class from Apache Commons Net to connect and transfer files to a FTP server. I’m trying to establish if it’s doing that in a passive or active mode by default …
Tag: ftp-client
FTPClient.listFiles is not returning time in seconds
private static void getFTPFileProperties(FTPClient client, String ftpLocation, String pattern) throws IOException { FTPFile[] fileList=null; fileList = client.listFiles(); for(…