forlano Messages: 1213 Registered: March 2006 Location: Italy
Senior Contributor
Oblivion wrote on Sat, 03 August 2024 13:05
However, in the meantime you can try the below attached package (it includes the FTP package and its reference examples.)
Best regards,
Oblivion
Hi Oblivion,
I am trying your package. I looked at the example but I cannot match the interface/method of plugin/Ftp I was used to. Now I have many complain from compiler. In particular:
1. after connect, how to enter in a given folder? I had ftp.Cd(folder)
I guess now it is: .SetDir(folder)
2. How can I transfer a file named myfile.txt and content hold in the String ff? I used
ftp.Save( "myfile.txt", ff)
3. How to close the connection?
I had Close() and now? I guess it is .Disconnect()