1. Intent intent = new Intent();   
  2. intent.setAction(Intent.ACTION_PICK);   
  3. Uri ftpUri = Uri.parse("ftp://yourftpserver.com");   
  4. intent.setDataAndType(ftpUri, "vnd.android.cursor.dir/lysesoft.andftp.uri");   
  5. intent.putExtra("ftp_username""anonymous");   
  6. intent.putExtra("ftp_password""something@somewhere.com");   
  7. // FTP settings (optional)   
  8. intent.putExtra("ftp_pasv""true");   
  9. //intent.putExtra("ftp_resume", "true");   
  10. //intent.putExtra("ftp_encoding", "UTF8");   
  11. // Download   
  12. intent.putExtra("command_type""download");   
  13. // Activity title   
  14. intent.putExtra("progress_title""Downloading files ...");   
  15. // Close activity after transfer (optional)   
  16. // intent.putExtra("close_ui", "true");   
  17. // Remote files to download.   
  18. intent.putExtra("remote_file1""/remotefolder/subfolder/file1.zip");   
  19. intent.putExtra("remote_file2""/remotefolder/subfolder/file2.zip");   
  20. // Target local folder where files will be downloaded.   
  21. intent.putExtra("local_folder""/sdcard/localfolder");   
  22. startActivityForResult(intent, 0);   

    구글에서 검색 하면 기본적으로 FTP를 사용하는 방법이 이런식으로 제시 되어 있는데요

    저기서 21. 22 에서 파일 이름을 알고 하나하나 다운 받습니다..

    저는 파일이름을 모른상태에서 어느 특정 폴더의 파일을 전부 다운 받고자 한다면 어떻게 구성해야 되나요?

    이것 저것 해봐도 안되네요..ㅜㅜ

    아님 다른 해결책있으신 분들의 도움 부탁 드립니다.^^