-1

I wanted to run an FTP server via an Android app, are there any open source FTP servers available so that I can use them in my app. The FTP server will be run as service, as per the settings set by the user.

Prathamesh Shetye
  • 915
  • 2
  • 8
  • 27

2 Answers2

0

Colorado FTP - open source FTP server in Java. First one from Google on "open source ftp server in java".

Anton Cherkashyn
  • 5,719
  • 6
  • 43
  • 80
0

also busybox ftpd (when it is available). I wish I knew it 3 days ago :(

    /system/bin/busybox --install -s /system/xbin
    /system/xbin/tcpsvd -E 0.0.0.0 21 /system/xbin/ftpd /data/ourFolder/ -w
Pedro Ziff
  • 97
  • 8