Page 1 of 1

Alternative to liburlftpcommand for mobile?

Posted: Fri May 06, 2016 7:58 am
by Scoperzor
Hi all, I'd like to know if there is an alternative for the libURLftpCommand function for mobile devices?

What I need to do is check the list of files in a particular directory on an FTP server, which I can successfully do on desktop with the following code:

Code: Select all

get liburlftpcommand("ls",sHost,sUsername,sPassword)
put url ("ftp://" & sUsername & ":" & sPassword & "@" & sHost) into fileList
How can I do the same on mobile? Thank you.