chrisRoald wrote: ↑Tuesday 11th March 2025 3:08pm
My laptop's fm - Nemo (based on Nautilus, I think) can connect to my domain-name server with the requisite sftp/webDav server and user parameters entered. So I want to know if my Gambas program can do a similar thing?
Some places to start you journey if you want to use ftp (as seen on your posted screenshot):
-
https://gambaswiki.org/wiki/comp/gb.net.curl (syntax documentation)
-
https://gambaswiki.org/wiki/doc/network (some general info on networking and gambas can be read at)
-
https://gambas-buch.de/dwen/doku.php?id ... .2.3:start (practical explanation with example code)
You might find some example applications on how to use ftp (I haven't checked myself) on the Gambas Farm (start IDE for that).
I do use network programming in some of my applications, but so far never used ftp as I rsync my data using SSH and authetication keys.
Some general understanding of networking, client/server concepts and network protocols like FTP (File Transfer Protocol) will be useful in understanding what you try to achieve.
And if all above doesn't help, we will read it.