码迷,mamicode.com
首页 > 编程语言 > 详细

python ftp 上传下载

时间:2014-12-16 19:35:19      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ar   os   sp   for   on   文件   log   bs   ad   

#coding=utf-8
 
from ftplib import FTP
import os
import os.path
import shutil
import datetime

 
def ftp_up(filename):
    ftp=FTP() 
    ftp.set_debuglevel(2)#打开调试级别2,显示详细信息;0为关闭调试信息 
    ftp.connect(‘10.7.39.29‘,‘888‘)#连接 
    ftp.login(‘happ‘,‘happ‘)#登录,如果匿名登录则用空串代替即可 
    print ftp.getwelcome()#显示ftp服务器欢迎信息
    try:
        ftp.mkd(‘+CYOUEMT‘)  
    except:  
        print(‘dir has existed %s‘ % ‘+CYOUEMT‘)

    ftp.cwd(‘+CYOUEMT‘) #选择操作目录 
    bufsize = 1024#设置缓冲块大小 
    file_handler = open(filename,‘rb‘)#以读模式在本地打开文件 
    ftp.storbinary(‘STOR %s‘ % os.path.basename(filename),file_handler,bufsize)#上传文件 
    ftp.set_debuglevel(0) 
    file_handler.close() 
    ftp.quit() 
    print "ftp up OK" 
 
def ftp_down(host,port,user,passw,rootDir,locaDir): 
    ftp=FTP() 
    ftp.set_debuglevel(2) 
    ftp.connect(host,port) 
    ftp.login(user,passw) 
    print ftp.getwelcome()#显示ftp服务器欢迎信息 
    ftp.cwd(rootDir) #选择操作目录 
    files = ftp.nlst()
    for name in files:   
        bufsize = 1024 
        file_handler = open(locaDir + name,‘wb‘).write #以写模式在本地打开文件 
        ftp.retrbinary(‘RETR %s‘ % os.path.basename(name),file_handler,bufsize)#接收服务器上文件并写入本地文件 
    ftp.set_debuglevel(0) 
    ftp.quit() 
    print "ftp down OK"

def copyFiles(sourceDir,  targetDir): 
    if sourceDir.find(".svn") > 0: 
        return 
    for file in os.listdir(sourceDir): 
        sourceFile = os.path.join(sourceDir,  file) 
        targetFile = os.path.join(targetDir,  file) 
        if os.path.isfile(sourceFile): 
            if not os.path.exists(targetDir):  
                os.makedirs(targetDir)  
            if not os.path.exists(targetFile) or(os.path.exists(targetFile) and (os.path.getsize(targetFile) != os.path.getsize(sourceFile))):  
                    open(targetFile, "wb").write(open(sourceFile, "rb").read()) 
        if os.path.isdir(sourceFile): 
            First_Directory = False 
            copyFiles(sourceFile, targetFile)
    print ‘copy them to ‘+targetDir


#a.com
ftp_down(‘10.10.10.1‘,‘21‘,‘111‘,"123456",‘happ‘,‘toftp/‘)
for root,dirs,files in os.walk(‘toftp‘):
    for f in files:
        ftp_up(os.path.join(root,f))

#b.com


python ftp 上传下载

标签:ar   os   sp   for   on   文件   log   bs   ad   

原文地址:http://my.oschina.net/u/867090/blog/356762

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!