使用python登录到ftp服务器:
#!/usr/local/bin/python3
#coding=utf-8
import ftplib
host="xxx.xxx.xxx.xxx" #ip或域名
username="xxx"
password="xxx"
ftpServer=ftplib.FTP(host)
ftpServer.encoding = "utf-8"
ftpServer.login(username,password)
ftpServer.dir() #列出目录
print("登录成功")