前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python 更新svn 并复制到其他目

python 更新svn 并复制到其他目

作者头像
py3study
发布2020-01-13 00:01:54
7930
发布2020-01-13 00:01:54
举报
文章被收录于专栏:python3python3
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pysvn
import locale
import datetime
import os
def setlocale():
    language_code, encoding = locale.getdefaultlocale()
    if language_code is None:
        language_code = 'en_GB'
    if encoding is None:
        encoding = 'UTF-8'
    if encoding.lower == 'utf':
        encoding = 'UTF-8'
    locale.setlocale( locale.LC_ALL, '%s.%s' % (language_code, encoding))
def get_login( realm, username, may_save ):
    return True, 'test', 'test', True
def svncheckout():
    client = pysvn.Client()
    client.callback_get_login = get_login
    ret = client.checkout(url,path)
def svnupdate(path):
    client = pysvn.Client()
    ret = client.update(path)
    #print ret
    return ret
def svninfo(path):
    client = pysvn.Client()
    entry = client.info(path)
    Version = "Version: %s" % entry.commit_revision.number
    Author = "Author: %s" % entry.commit_author
    Update = "Update Date: %s" % str(datetime.datetime.fromtimestamp(entry.commit_time))[:-7]
    f = file('log.txt','a')
    f.write(Version+'\n'+Author+'\n'+Update+'\n'+'-'*32+'\n')
    f.close()
      
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)
if __name__ == "__main__":
    path = u"D:\\dsa\\测试"
    url = "http://192.168.5.110:808/svn/test/%E6%B5%8B%E8%AF%95"
    #setlocale()
    #svncheckout()
    svnupdate(path)
    svninfo(path)
    sourceDir = u"D:\\dsa\\测试"
    targetDir = u"D:\\xshell\\windows平台android模拟器"
    copyFiles(sourceDir,targetDir)
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-08-26 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档