Apache Commons Net FTPClient and listFiles()

Found it! The thing is you want to enter passive mode after you connect, but before you log in. Your code returns nothing for me, but this works for me: import org.apache.commons.net.ftp.FTPClient; import java.io.IOException; import org.apache.commons.net.ftp.FTPFile; public class BasicFTP { public static void main(String[] args) throws IOException { FTPClient client = new FTPClient(); client.connect(“c64.rulez.org”); client.enterLocalPassiveMode(); … Read more

Schedule automatic daily upload with FileZilla [closed]

FileZilla does not have any command line arguments (nor any other way) that allow an automatic transfer. Some references: FileZilla Client command-line arguments https://trac.filezilla-project.org/ticket/2317 How do I send a file with FileZilla from the command line? Though you can use any other client that allows automation. You have not specified, what protocol you are using. … Read more