python从ftp服务器下载文件的示例
这篇文章给大家分享的是有关python从ftp服务器下载文件的示例的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
代码之余,将代码过程重要的一些代码段备份一下,如下的代码内容是关于Python从ftp服务器下载文件的的代码,希望能对小伙伴有用途。
#coding=utf-8 ''' ftp自动下载、自动上传脚本,可以递归目录操作 ''' fromftplibimportFTP importos,sys,string,datetime,time importsocket classMYFTP: 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) deflogin(self): ftp=self.ftp try: timeout=300 socket.setdefaulttimeout(timeout) ftp.set_pasv(True) printu'开始连接到%s'%(self.hostaddr) ftp.connect(self.hostaddr,self.port) printu'成功连接到%s'%(self.hostaddr) printu'开始登录到%s'%(self.hostaddr) ftp.login(self.username,self.password) printu'成功登录到%s'%(self.hostaddr) debug_print(ftp.getwelcome()) exceptException: printu'连接或登录失败' try: ftp.cwd(self.remotedir) except(Exception): printu'切换目录失败' defis_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:%dremotefile_size:%d'%(localfile_size,remotefile_size),) ifremotefile_size==localfile_size: return1 else: return0 defdownload_file(self,localfile,remotefile): ifself.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() defdownload_files(self,localdir='./',remotedir='./'): try: self.ftp.cwd(remotedir) except: debug_print(u'目录%s不存在,继续...'%remotedir) return ifnotos.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 foriteminremotenames: filetype=item[0] filename=item[1] local=os.path.join(localdir,filename) iffiletype=='d': self.download_files(local,filename) eliffiletype=='-': self.download_file(local,filename) self.ftp.cwd('..') debug_print(u'返回上层目录%s'%self.ftp.pwd()) defupload_file(self,localfile,remotefile): ifnotos.path.isfile(localfile): return ifself.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) defupload_files(self,localdir='./',remotedir='./'): ifnotos.path.isdir(localdir): return localnames=os.listdir(localdir) self.ftp.cwd(remotedir) foriteminlocalnames: src=os.path.join(localdir,item) ifos.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('..') defget_file_list(self,line): ret_arr=[] file_arr=self.get_filename(line) iffile_arr[1]notin['.','..']: self.file_list.append(file_arr) defget_filename(self,line): pos=line.rfind(':') while(line[pos]!=''): pos+=1 while(line[pos]==''): pos+=1 file_arr=[line[0],line[pos:]] returnfile_arr defdebug_print(s): prints 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从ftp服务器下载文件的示例”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
推荐阅读
-
Python中怎么动态声明变量赋值
这篇文章将为大家详细讲解有关Python中怎么动态声明变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中变量的存储原理是什么
-
Python中怎么引用传递变量赋值
这篇文章将为大家详细讲解有关Python中怎么引用传递变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中怎么获取程序执行文件路径
python中怎么获取程序执行文件路径,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的...
-
Python中如何获取文件系统的使用率
Python中如何获取文件系统的使用率,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴...
-
Python中怎么获取文件的创建和修改时间
这篇文章将为大家详细讲解有关Python中怎么获取文件的创建和修改时间,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读...
-
python中怎么获取依赖包
今天就跟大家聊聊有关python中怎么获取依赖包,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据...
-
python怎么实现批量文件加密功能
-
python中怎么实现threading线程同步
小编给大家分享一下python中怎么实现threading线程同步,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!...
-
python下thread模块创建线程的方法
本篇内容介绍了“python下thread模块创建线程的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来...