ftp access
Posted: Wed Nov 30, 2011 11:24 am
Hi,
I am trying to get an app to connect upto an ftp and pull down a list of the files on the server. My problem is that on Android it doesn't seem to want to connect, it works fine on desktop and on iOS.
Here is what I have got so far.
Any ideas would be really appreciated.
Thanks very much.
Neil
I am trying to get an app to connect upto an ftp and pull down a list of the files on the server. My problem is that on Android it doesn't seem to want to connect, it works fine on desktop and on iOS.
Here is what I have got so far.
Code: Select all
put "username" into userName
put "password" into userPassword
put "ftp://"&urlEncode(userName)&":"&urlEncode(userPassword)&"@ftp.e3di-studio.com/e3Dimage/" into fileURLtoGet
put URL fileURLtoGet into fld "images"
Thanks very much.
Neil