2013年5月9日 星期四

[Python] ftplib change port

使用Python連到ftp範例:

(使用預設port:21)
from ftplib import FTP
ftp = ftplib.FTP('xxx.xxx.xxx.xxx')
ftp.login('username','password')
ftp.retrlines('LIST')   #列出檔案

(更改port為5021)
from ftplib import FTP
ftp=FTP()  #要先建立FTP的instance
ftp.connect('xxx.xxx.xxx.xxx', port=5021)
ftp.login('username','password')
ftp.retrlines('LIST')
--好康廣告--

沒有留言:

  加入書籤: HemiDemi Yahoo! My Web Google Bookmarks technorati 收進你的MyShare個人書籤 Del.icio.us
Related Posts Plugin for WordPress, Blogger...