RosettaCodeData/Task/FTP/Julia/ftp.julia
2023-07-01 13:44:08 -04:00

8 lines
181 B
Text

using FTPClient
ftp = FTP(hostname = "ftp.ed.ac.uk", username = "anonymous")
cd(ftp, "pub/courses")
println(readdir(ftp))
bytes = read(download(ftp, "make.notes.tar"))
close(ftp)