说明
偶然碰到一个case要读取ftp, 之前sftp用起来觉得还可以,ftp实在是…
总而言之python有个古老到自带的包可以读取,但是用起来十分不方便,记录一下以备哪天再偶尔用到吧…
内容
1 导包
import ftplib
2 实例化对象
f = ftplib.FTP()
3 填写主机、端口、用户、密码
f.connect(host='111.111.111.111', port=1234) # 实例化FTP对象
f.login('YOURUSER', 'YOURPWD') # 登录
4 获取文件列表
flist =f.nlst()
5 读取
import tqdm
for i in tqdm.tqdm(range(len(flist))):
print('[I] %s %s' %(i,flist[i] ))
the_file = flist[i]
bufsize=1024
file_handler = open('./data/' + the_file, 'wb').write
f.retrbinary("RETR %s " %the_file, file_handler , bufsize)
然后结果就能读出来了,偶尔救个急用用,实在是不方便,至少用个sftp也好。