服务器之家

服务器之家 > 正文

python2.7实现FTP文件下载功能

时间:2021-01-31 00:34     来源/作者:无为之为

本文实例为大家分享了python实现FTP文件下载功能的具体代码,供大家参考,具体内容如下

代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#-*-coding:utf-8-*-
 
 
import os
import time
from ftplib import FTP
 
 
#服务器地址
FTP_SERVER='xx.xx.xx.xx' -- 对应 ftpe服务器地址
USER='用户'
PWD ='密码'
FTP_PATH='/home/xx/xx/'
local_root='e:'+FTP_PATH
DATE= time.strftime('%Y%m%d',time.localtime(time.time()))
print DATE
 
def isDir(filename):
 try:
 path = filename;
 path.replace('/','\\')
 if os.path.exists(path):
  print '---file exists--'
 else:
  print 'file not exists ',local_root
  os.mkdirs(local_root) 
 return True
 except:
 return False
 
 
def ftpconnect():
 ftp=FTP()
 ftp.set_debuglevel(2)
 ftp.connect(FTP_SERVER,21)
 ftp.login(USER,PWD)
 return ftp
 
 
def downloadfile():
 ftp = ftpconnect()
 print ftp.getwelcome() #显示ftp服务器欢迎信息
 
 li = ftp.nlst(FTP_PATH)
 print 'ftp: ',li
 for eachfile in li:
 localpath = 'e:'+eachfile
 print '-- open localpath --',localpath
 bufsize = 1024
 isDir(localpath)
 fp = open(localpath,'wb+')
 ftp.retrbinary('RETR '+eachfile,fp.write,bufsize)
 fp.flush()
 
 ftp.set_debuglevel(0) #关闭调试
 fp.close()
 ftp.quit() #退出ftp服务器
 
if __name__=="__main__":
 downloadfile()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/chw1271/article/details/52887088

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
返回顶部