Hello
Would you please let me know if I missed anything, I am using FTPClient and using IP address as a host but not able to connect
Here are my commands
using FTPClient
ftp_init()
ftp = FTP(host="192.168.251.200", implt=true, ssl=true, user="anonymous", pswd="")
binary(ftp)
file = download(ftp, "dataOnFTP.bin", "C:\Users\xyz\test.bin")
close(ftp)
ftp_cleanup()
when sending " using FTPClient" there are bunch of warnings as shown below partially
WARNING: Base.String is deprecated, use AbstractString instead.
likely near C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:35
WARNING: Base.String is deprecated, use AbstractString instead.
likely near C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:67
WARNING: Base.Uint8 is deprecated, use UInt8 instead.
likely near C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:81
..
.
.and at the end I am getting the following error
ERROR: Failed to connect. :: LibCURL error #7
[inlined code] from C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:138
in ftp_command at C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:454
in ftp_connect at C:\Users\melese\.julia\v0.4\FTPClient\src\FTPC.jl:493
in call at C:\Users\melese\.julia\v0.4\FTPClient\src\FTPObject.jl:23
Thanks
Yared