Python FTP到iPad

前端之家收集整理的这篇文章主要介绍了Python FTP到iPad前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在Windows 7上.

我无法使用简单的Python脚本连接到我的iPad:

HOST = '192.168.1.122'
try:
    f = ftplib.FTP(HOST)
except (socket.error,socket.gaierror),e:    
    MessageBox.Show('ERROR: cannot reach "%s"' % HOST)
    return          
try:
    f.connect(HOST,2121)
    f.login()
except ftplib.error_perm:
    MessageBox.Show('ERROR: cannot login anonymously')
    f.quit()
    return

我遇到的错误是“getaddrinfo返回一个空列表”和“无法到达…”消息…无法解决它…

我尝试使用iPad上的几个程序进行FTP而没有成功.如果我通过DOS框FTP或使用FTP软件,它的工作原理.我在我的电脑上尝试了另一台FTP服务器,但它确实有效.

我被迫使用端口2121,所以不能改变它.

任何线索或经验?

最佳答案
您应该在任何事情之前阅读文档:

class ftplib.FTP([host[,user[,
passwd[,acct[,timeout]]]]]) Return a
new instance of the FTP class. When
host is given,the method call
connect(host) is made. When user is
given,additionally the method call
login(user,passwd,acct) is made
(where passwd and acct default to the
empty string when not given). The
optional timeout parameter specifies a
timeout in seconds for blocking
operations like the connection attempt
(if is not specified,the global
default timeout setting will be used).

因此,如果你执行f = ftplib.FTP(HOST)它会失败,因为它将尝试连接到标准端口(21)而不是2121.
你应该得到一个ftplib的实例,然后使用f.connect(HOST,2121).

http://docs.python.org/library/ftplib.html

原文链接:https://www.f2er.com/python/439103.html

猜你在找的Python相关文章