python实现从ftp服务器下载文件


Posted in Python onMarch 03, 2020

代码之余,将代码过程重要的一些代码段备份一下,如下的代码内容是关于Python从ftp服务器下载文件的的代码,希望能对小伙伴有用途。

#coding=utf-8
'''
 ftp自动下载、自动上传脚本,可以递归目录操作
'''

from ftplib import FTP
import os,sys,string,datetime,time
import socket

class MYFTP:
 def __init__(self, hostaddr, username, password, remotedir, port=21):
 self.hostaddr = hostaddr
 self.username = username
 self.password = password
 self.remotedir = remotedir
 self.port  = port
 self.ftp  = FTP()
 self.file_list = []
 # self.ftp.set_debuglevel(2)
 def __del__(self):
 self.ftp.close()
 # self.ftp.set_debuglevel(0)
 def login(self):
 ftp = self.ftp
 try: 
 timeout = 300
 socket.setdefaulttimeout(timeout)
 ftp.set_pasv(True)
 print u'开始连接到 %s' %(self.hostaddr)
 ftp.connect(self.hostaddr, self.port)
 print u'成功连接到 %s' %(self.hostaddr)
 print u'开始登录到 %s' %(self.hostaddr)
 ftp.login(self.username, self.password)
 print u'成功登录到 %s' %(self.hostaddr)
 debug_print(ftp.getwelcome())
 except Exception:
 print u'连接或登录失败'
 try:
 ftp.cwd(self.remotedir)
 except(Exception):
 print u'切换目录失败'

 def is_same_size(self, localfile, remotefile):
 try:
 remotefile_size = self.ftp.size(remotefile)
 except:
 remotefile_size = -1
 try:
 localfile_size = os.path.getsize(localfile)
 except:
 localfile_size = -1
 debug_print('localfile_size:%d remotefile_size:%d' %(localfile_size, remotefile_size),)
 if remotefile_size == localfile_size:
 return 1
 else:
 return 0
 def download_file(self, localfile, remotefile):
 if self.is_same_size(localfile, remotefile):
 debug_print(u'%s 文件大小相同,无需下载' %localfile)
 return
 else:
 debug_print(u'>>>>>>>>>>>>下载文件 %s ... ...' %localfile)
 #return
 file_handler = open(localfile, 'wb')
 self.ftp.retrbinary(u'RETR %s'%(remotefile), file_handler.write)
 file_handler.close()

 def download_files(self, localdir='./', remotedir='./'):
 try:
 self.ftp.cwd(remotedir)
 except:
 debug_print(u'目录%s不存在,继续...' %remotedir)
 return
 if not os.path.isdir(localdir):
 os.makedirs(localdir)
 debug_print(u'切换至目录 %s' %self.ftp.pwd())
 self.file_list = []
 self.ftp.dir(self.get_file_list)
 remotenames = self.file_list
 #print(remotenames)
 #return
 for item in remotenames:
 filetype = item[0]
 filename = item[1]
 local = os.path.join(localdir, filename)
 if filetype == 'd':
 self.download_files(local, filename)
 elif filetype == '-':
 self.download_file(local, filename)
 self.ftp.cwd('..')
 debug_print(u'返回上层目录 %s' %self.ftp.pwd())
 def upload_file(self, localfile, remotefile):
 if not os.path.isfile(localfile):
 return
 if self.is_same_size(localfile, remotefile):
 debug_print(u'跳过[相等]: %s' %localfile)
 return
 file_handler = open(localfile, 'rb')
 self.ftp.storbinary('STOR %s' %remotefile, file_handler)
 file_handler.close()
 debug_print(u'已传送: %s' %localfile)
 def upload_files(self, localdir='./', remotedir = './'):
 if not os.path.isdir(localdir):
 return
 localnames = os.listdir(localdir)
 self.ftp.cwd(remotedir)
 for item in localnames:
 src = os.path.join(localdir, item)
 if os.path.isdir(src):
 try:
  self.ftp.mkd(item)
 except:
  debug_print(u'目录已存在 %s' %item)
 self.upload_files(src, item)
 else:
 self.upload_file(src, item)
 self.ftp.cwd('..')

 def get_file_list(self, line):
 ret_arr = []
 file_arr = self.get_filename(line)
 if file_arr[1] not in ['.', '..']:
 self.file_list.append(file_arr)
 
 def get_filename(self, line):
 pos = line.rfind(':')
 while(line[pos] != ' '):
 pos += 1
 while(line[pos] == ' '):
 pos += 1
 file_arr = [line[0], line[pos:]]
 return file_arr
def debug_print(s):
 print s

if __name__ == '__main__':
 timenow = time.localtime()
 datenow = time.strftime('%Y-%m-%d', timenow)
 # 配置如下变量
 hostaddr = '211.15.113.45' # ftp地址
 username = 'UserName' # 用户名
 password = '123456' # 密码
 port = 21 # 端口号 
 rootdir_local = 'E:/mypiv' # 本地目录
 rootdir_remote = '/PIV'   # 远程目录
 
 f = MYFTP(hostaddr, username, password, rootdir_remote, port)
 f.login()
 f.download_files(rootdir_local, rootdir_remote)
 
 timenow = time.localtime()
 datenow = time.strftime('%Y-%m-%d', timenow)
 logstr = u"%s 成功执行了备份n" %datenow
 debug_print(logstr)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python实现对excel进行数据剔除操作实例
Dec 07 Python
Python实现定期检查源目录与备份目录的差异并进行备份功能示例
Feb 27 Python
python创造虚拟环境方法总结
Mar 04 Python
PyQt5 加载图片和文本文件的实例
Jun 14 Python
pyqt5移动鼠标显示坐标的方法
Jun 21 Python
通过cmd进入python的实例操作
Jun 26 Python
python+mysql实现个人论文管理系统
Oct 25 Python
将labelme格式数据转化为标准的coco数据集格式方式
Feb 17 Python
PyQt5中QTableWidget如何弹出菜单的示例代码
Feb 23 Python
python数字类型math库原理解析
Mar 02 Python
Python unittest discover批量执行代码实例
Sep 08 Python
Python 图片添加美颜效果
Apr 28 Python
python实现简单的购物程序代码实例
Mar 03 #Python
python实现跨excel sheet复制代码实例
Mar 03 #Python
python剪切视频与合并视频的实现
Mar 03 #Python
详解Pycharm出现out of memory的终极解决方法
Mar 03 #Python
基于python 等频分箱qcut问题的解决
Mar 03 #Python
python实现快递价格查询系统
Mar 03 #Python
使用python 计算百分位数实现数据分箱代码
Mar 03 #Python
You might like
乱谈我对耳机、音箱的感受
2021/03/02 无线电
PHP数组内存利用率低和弱类型详细解读
2017/08/10 PHP
javascript 时间比较实现代码
2009/10/28 Javascript
TextArea设置MaxLength属性最大输入值的js代码
2012/12/21 Javascript
抛弃Nginx使用nodejs做反向代理服务器
2014/07/17 NodeJs
取得元素的左和上偏移量的方法
2014/09/17 Javascript
Javascript学习笔记之函数篇(六) : 作用域与命名空间
2014/11/23 Javascript
如何用angularjs制作一个完整的表格
2016/01/21 Javascript
JS简单编号生成器实现方法(附demo源码下载)
2016/04/05 Javascript
浅析JSONP技术原理及实现
2016/06/08 Javascript
微信公众号-获取用户信息(网页授权获取)实现步骤
2016/10/21 Javascript
Javasript设计模式之链式调用详解
2018/04/26 Javascript
基于Vue实现拖拽效果
2018/04/27 Javascript
基于mpvue的小程序项目搭建的步骤
2018/05/22 Javascript
详解vue挂载到dom上会发生什么
2019/01/20 Javascript
《javascript设计模式》学习笔记一:Javascript面向对象程序设计对象成员的定义分析
2020/04/07 Javascript
vue实现整屏滚动切换
2020/06/29 Javascript
JavaScript获取时区实现过程解析
2020/09/24 Javascript
jquery实现图片放大镜效果
2020/12/23 jQuery
跟老齐学Python之让人欢喜让人忧的迭代
2014/10/02 Python
python获取指定路径下所有指定后缀文件的方法
2015/05/26 Python
Python实现网络端口转发和重定向的方法
2016/09/19 Python
Python可变参数用法实例分析
2017/04/02 Python
详解Python 序列化Serialize 和 反序列化Deserialize
2017/08/20 Python
Python使用asyncio包处理并发详解
2017/09/09 Python
python爬取亚马逊书籍信息代码分享
2017/12/09 Python
浅谈Python3中strip()、lstrip()、rstrip()用法详解
2019/04/29 Python
Python输出指定字符串的方法
2020/02/06 Python
Python正则表达式学习小例子
2020/03/03 Python
Mytheresa中国官网:德国时尚奢侈品商城
2017/08/04 全球购物
GetYourGuide台湾:预订旅游活动、景点和旅游项目
2019/06/10 全球购物
中专生自我鉴定范文
2013/12/19 职场文书
父母对孩子的寄语
2014/04/09 职场文书
办护照工作证明
2014/10/01 职场文书
2016入党积极分子考察评语
2015/12/01 职场文书
创业计划书之密室逃脱
2019/11/08 职场文书