O apache-commons ftp recupera vários arquivos

Estou tentando usar o apache-commons net FTP lib para obter um servidor FTP. O código funciona bem se houver apenas 1 arquivo no diretório, mas sempre retorna nulo na segunda vez que chamo retrieveFileStream (). Alguma ideia? Eu escrevi o seguinte código de exemplo para demonstrar meu problema.

public static void main(String[] args) throws Exception
  {
    String strLine;
    FTPClient client = null;

    try{
      client = new FTPClient();
      client.connect("localhost", 21);
      client.enterLocalPassiveMode();
      client.login("ftptester", "letmein");

      client.changeWorkingDirectory("remote");

      FTPFile[] ftpFiles = client.listFiles();          
      if (ftpFiles != null && ftpFiles.length > 0) {
        for (FTPFile file : ftpFiles) {
          if (!file.isFile()) {
            continue;
          }

          InputStream fin = client.retrieveFileStream(filepath);
          if (fin == null) {
            System.out.println("could not retrieve file: " + filepath);
            continue;
          }

          byte[] data = readBytes(fin);  // helper method not shown, just processes the input stream
          fin.close();
          fin = null;

          System.out.println("data: " + new String(data));          
        }
      }
    }
    finally {
      ...  // cleanup code
    }
  }

questionAnswers(1)

yourAnswerToTheQuestion