#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实现从ftp服务器下载文件相关推荐

  1. ftp服务器目录创建文件夹权限设置,ftp服务器 创建文件夹权限设置

    ftp服务器 创建文件夹权限设置 内容精选 换一换 文件系统创建完成后,用户需在客户端挂载文件共享,在本地共享目录和CSG的文件共享建立映射,通过操作本地的目录实现对CSG共享目录的操作,实现数据实时 ...

  2. 怎样查看服务器上的文件夹大小写,查看ftp服务器所有文件夹大小写

    查看ftp服务器所有文件夹大小写 内容精选 换一换 对于不同业务场景,通过在调整数据库的参数配置,可以有效提升服务器性能. 上传单个或多个本地文件或文件夹至OBS指定路径.待上传的文件可以是任何类型: ...

  3. ftp服务器怎么创建文件夹权限设置密码,ftp服务器 创建文件夹权限设置

    ftp服务器 创建文件夹权限设置 内容精选 换一换 请务必使用最新的补丁更新操作系统和相关软件(详情请参见系统要求(DSC)),以防漏洞和其他安全问题.为确保安全性,DSC会对其创建的文件和文件夹进行 ...

  4. es文件浏览器怎么开ftp服务器,es文件浏览器怎么建立ftp服务器

    es文件浏览器怎么建立ftp服务器 内容精选 换一换 弹性云服务器的密钥文件是在创建密钥对后,浏览器会提示您下载或自动下载私钥文件,请妥善保管.在SSH登录弹性云服务器时,您将需要提供相应的私钥.密钥 ...

  5. es文件浏览器怎么开ftp服务器,es文件浏览器怎么开ftp服务器

    es文件浏览器怎么开ftp服务器 内容精选 换一换 怎样上传文件到Windows操作系统云服务器?安装传输工具在本地主机和Windows云服务器上分别安装数据传输工具,将文件上传到云服务器.例如QQ. ...

  6. 向ftp服务器 写入文件失败,关于从FTp服务器取回文件写入数据表时提示:file not found(2)...

    当前位置:我的异常网» Delphi » 关于从FTp服务器取回文件写入数据表时提示:file not 关于从FTp服务器取回文件写入数据表时提示:file not found(2) www.myex ...

  7. python编程小组信息程序下载_300种 Python 编程图书大集合(FTP服务器下载) (豆瓣 Python编程小组)...

    咋么共享? 一没空间,二上传很慢. py的不多 ================================================= ofan@ofan-laptop:~/文档$ du ...

  8. Python操作FTP服务器实现文件和文件夹的上传与下载,python清理ftp目录下的所有文件和非空文件夹

    Python 连接 FTP 服务器并实现文件夹上传实例演示 第一章:连接 FTP 服务器并实现文件夹上传 ① 连接 FTP 服务器 ② 区分文件和文件夹名 ③ 文件夹名包含空格处理 ④ 使用递归实现: ...

  9. python下载文件传到服务器_python实现从ftp服务器下载文件

    代码之余,将代码过程重要的一些代码段备份一下,如下的代码内容是关于Python从ftp服务器下载文件的的代码,希望能对小伙伴有用途.#coding=utf-8 ''' ftp自动下载.自动上传脚本,可 ...

  10. Python 实现批量从不同的Linux服务器下载文件

    基于Python实现批量从不同的Linux服务器下载文件   by:授客 QQ:1033553122 实现功能 1 测试环境 1 使用方法 1 1. 编辑配置文件conf/file_for_downl ...

最新文章

  1. Ubuntu 16.04 下 Vim安装
  2. 四大开源分布式存储_ipfs分布式存储行业面临着四大主要风险,你知道是哪些吗?...
  3. ffmpeg 存流为hls文件
  4. requests有意思的proxies参数-何时使用代理有效
  5. JavaScript中匿名函数的困惑
  6. vue 使用高德地图 获取坐标
  7. Word快捷键列表之Ctrl+
  8. 系统策略禁止安装此设备。请与系统管理员联系-解决方案
  9. 计算机专业进银行和国家电网,银行春招与国家电网那个好?
  10. GIS实验之制作核密度分析图
  11. nexus上传jar总是读条而上传不成功的问题
  12. ArcGIS教程:解决裁剪功能输出的数据集为空的情况。
  13. 第四篇:coalesce 和repartition 在shuffle 和并行度之间的选择(spark2.3持续更新中...........)
  14. 逻辑回归 - 理论篇
  15. Unity的数据本地储存的集中方法
  16. OC语言之Objective-C简介
  17. 思科-ASA-OSPF-ACL--ARP综合网络搭建
  18. carbondata 安装文档
  19. vs2019java安装教程_vs2019安装和使用教程(详细)
  20. matlab中信赖域法,第8讲信赖域方法.ppt

热门文章

  1. 2019-4(2)-数据挖掘学习笔记
  2. 最大公约数(超级好的板子)
  3. 推荐几个精致的前端Web UI框架
  4. swift 第五课 定义model类 和 导航栏隐藏返回标题
  5. webservic接收byte[]请求
  6. 例题6-4 Broken Keyboard UVa11988
  7. .NET 下运用策略模式
  8. 远离疲倦,告别非理性思维
  9. CCF201612-5 卡牌游戏(募集解题代码)
  10. UVA10325 The Lottery【GCD+LCM】