How to transfer ftp file to server from PhoneGap / webapp?

Can I connect to the server and FTP file from PhoneGap application? Basically, I suppose there is a way to open an FTP connection with Ajax / JQuery in some way?

+1
source share
2 answers

I don’t think you can FTP the file from PhoneGap, but they provide an API for transferring the file to the server using multi-line HTTP encoding:

http://docs.phonegap.com/en/1.0.0/phonegap_file_file.md.html#FileTransfer

You will need a script on the server in the technology of your choice to receive the file, however you will have to do whatever you like with it, including moving it to the directory that you are trying to execute FTP on

0
source

The Ftp program for breaking the phone is shown below.

https://github.com/macdonst/FtpClient

0
source

Source: https://habr.com/ru/post/1246091/


All Articles