Python FTP操作类代码分享


Posted in Python onMay 13, 2014
#!/usr/bin/py2
# -*- coding: utf-8 -*-
#encoding=utf-8
'''''
    ftp自动下载、自动上传脚本,可以递归目录操作
'''  
from ftplib import FTP
import os, sys, string, datetime, time
import socket   
class FtpClient:
    def __init__(self, host, user, passwd, remotedir, port=21):
        self.hostaddr = host
        self.username = user
        self.password = passwd
        self.remotedir  = remotedir           
        self.port     = port
        self.ftp      = FTP()
        self.file_list = []   
    def __del__(self):
        self.ftp.close()   
    def login(self):
        ftp = self.ftp
        try:
            timeout = 60
            socket.setdefaulttimeout(timeout)
            ftp.set_pasv(True)
            ftp.connect(self.hostaddr, self.port)
            print 'Connect Success %s' %(self.hostaddr)
            ftp.login(self.username, self.password)
            print 'Login Success %s' %(self.hostaddr)
            debug_print(ftp.getwelcome())
        except Exception:
            deal_error("Connect Error or Login Error")
        try:
            ftp.cwd(self.remotedir)
        except(Exception):
            deal_error('Change Directory Error')   
    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('lo:%d  re:%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):
            return
        else:
            pass
        file_handler = open(localfile, 'wb')
        self.ftp.retrbinary('RETR %s'%(remotefile), file_handler.write)
        file_handler.close()
    def download_files(self, localdir='./', remotedir='./'):
        try:
            self.ftp.cwd(remotedir)
        except:
            return
        if not os.path.isdir(localdir):
            os.makedirs(localdir)
        self.file_list = []
        self.ftp.dir(self.get_file_list)
        remotenames = self.file_list
        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('..')   
    def upload_file(self, localfile, remotefile):
        if not os.path.isfile(localfile):
            return
        if self.is_same_size(localfile, remotefile):
            return
        file_handler = open(localfile, 'rb')
        self.ftp.storbinary('STOR %s' %remotefile, file_handler)
        file_handler.close()   
    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('Directory Exists %s' %item)
                self.upload_files(src, item)
            else:
                self.upload_file(src, item)
        self.ftp.cwd('..')
    def mkdir(self, remotedir='./'):
        try:
            self.ftp.mkd(remotedir)
        except:
            debug_print('Directory Exists %s' %remotedir)
    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(str):
    print (str)
def deal_error(e):
    timenow  = time.localtime()
    datenow  = time.strftime('%Y-%m-%d', timenow)
    logstr = '%s Error: %s' %(datenow, e)
    debug_print(logstr)
    file.write(logstr)
    sys.exit()
Python 相关文章推荐
Python中threading模块join函数用法实例分析
Jun 04 Python
简介Django框架中可使用的各类缓存
Jul 23 Python
浅谈django开发者模式中的autoreload是如何实现的
Aug 18 Python
Python基于动态规划算法解决01背包问题实例
Dec 06 Python
python类的方法属性与方法属性的动态绑定代码详解
Dec 27 Python
python使用xpath中遇到:到底是什么?
Jan 04 Python
Python3实现的回文数判断及罗马数字转整数算法示例
Mar 27 Python
深入解析神经网络从原理到实现
Jul 26 Python
Python-jenkins 获取job构建信息方式
May 12 Python
基于python requests selenium爬取excel vba过程解析
Aug 12 Python
python实现录音功能(可随时停止录音)
Oct 26 Python
关于Python错误重试方法总结
Jan 03 Python
python生成指定尺寸缩略图的示例
May 07 #Python
python读取浮点数和读取文本文件示例
May 06 #Python
python创建线程示例
May 06 #Python
Python Web服务器Tornado使用小结
May 06 #Python
Python SQLAlchemy基本操作和常用技巧(包含大量实例,非常好)
May 06 #Python
Python Web开发模板引擎优缺点总结
May 06 #Python
windows系统中python使用rar命令压缩多个文件夹示例
May 06 #Python
You might like
无数据库的详细域名查询程序PHP版(5)
2006/10/09 PHP
第七章 php自定义函数实现代码
2011/12/30 PHP
php管理nginx虚拟主机shell脚本实例
2014/11/19 PHP
js实现iframe动态调整高度的代码
2008/01/06 Javascript
javaScript 判断字符串是否为数字的简单方法
2009/07/25 Javascript
JS判断数组中是否有重复值得三种实用方法
2013/08/16 Javascript
纯JS实现动态时间显示代码
2014/02/08 Javascript
浅谈Javascript中匀速运动的停止条件
2014/12/19 Javascript
JavaScript判断手机号运营商是移动、联通、电信还是其他(代码简单)
2015/09/25 Javascript
JQuery 传送中文乱码问题的简单解决办法
2016/05/24 Javascript
jQuery plugin animsition使用小结
2017/09/14 jQuery
jQuery实现表单动态加减、ajax表单提交功能
2018/06/08 jQuery
jquery 通过ajax请求获取后台数据显示在表格上的方法
2018/08/08 jQuery
浅谈从React渲染流程分析Diff算法
2018/09/08 Javascript
详解ES6 Symbol 的用途
2018/10/14 Javascript
重置Redux的状态数据的方法实现
2019/11/18 Javascript
JavaScript实现网页tab栏效果制作
2020/11/20 Javascript
Python对两个有序列表进行合并和排序的例子
2014/06/13 Python
简单介绍Python中的decode()方法的使用
2015/05/18 Python
python的dataframe和matrix的互换方法
2018/04/11 Python
python实现requests发送/上传多个文件的示例
2018/06/04 Python
Django中更改默认数据库为mysql的方法示例
2018/12/05 Python
Python实现微信自动好友验证,自动回复,发送群聊链接方法
2019/02/21 Python
Python获取时间戳代码实例
2019/09/24 Python
Python3与fastdfs分布式文件系统如何实现交互
2020/06/23 Python
Python代码覆盖率统计工具coverage.py用法详解
2020/11/25 Python
捷克街头、运动和滑板一站式商店:BoardStar.cz
2019/10/06 全球购物
手工制作的意大利皮革运动鞋:KOIO
2020/01/05 全球购物
美国名牌手表折扣网站:Jomashop
2020/05/22 全球购物
经理秘书求职自荐信范文
2014/03/23 职场文书
《闻一多先生的说和做》教学反思
2014/04/28 职场文书
预备党员转正考核材料
2014/06/03 职场文书
英语分层教学实施方案
2014/06/15 职场文书
导游词之烟台威海蓬莱
2019/11/14 职场文书
Python+Appium实现自动抢微信红包
2021/05/21 Python
Python上下文管理器Content Manager
2021/06/26 Python