Python备份目录及目录下的全部内容

Python备份目录及目录下的全部内容

本来是想写一个东西可以直接调用TortoiseSVN保存当前代码到一个分枝下的。

可惜调用SVN的部分还在研究。就先写了目录拷贝的部分。

如果有喜欢研究Python的童鞋愿意提供想法或者建议的话,

这里先谢谢了。 :)

就目录拷贝的部分,思想很简单。读配置文件中的配置信息。

生成一个项目名称加日期时间组成的文件夹名为分枝名称。把当前项目下的全部内容

拷贝到这个目录下。

然后要做的研究就是调用TortoiseSVN命令嵌入这部分代码。

现在看代码:

1. 读取配置文件

配置文件很简单。用的就是txt文件。 格式类似于:

# root:/Users/lichallenger/test_src/
# project:test

# destination:/Users/lichallenger/test_dst/

BTW: 我用的是Mac所以目录格式是这样的。如果你用的是Windows的话请适

当修改配置文件。 

 

读文件就是最简单的了。直接用标准库的文件操作模块打开文件,读出全部的配置。一共就三行,所以

也不用考虑效率什么的了。 

 

# open config file and read config information
# author: bruce li

class ConfigHandler(object):
    #
    def __init__(self,config_path):
        '''initializer'''
        self.config_path = config_path
    
    #read config infor
    def read_config(self):
        f = open(self.config_path)

        try:
            self.all_lines = f.readlines()
        except:
            raise    
        else:

            f.close() 

2. 拷贝目录和目录内容

拷贝目录用了shutil模块。里面有个方法可以直接把目录和目录下的全部内容拷贝到制定的其他目录。

这样就省得搞目录遍历之类的代码了。  

# copy dir(s) & file(s) to configured path
# author: bruce li

import shutil

class CopyHandler(object):
    #
    def __init__(self,src_path,dest_path):
        self.src_path = src_path
        self.dest_path = dest_path

    def move_content(self):
        try:
            shutil.copytree(self.src_path,self.dest_path)
        except:
            raise    

    @staticmethod
    def    move_src_content(src, dest):
        try:
            shutil.copytree(src_path,dest_path)
        except:
            raise
        

     

3. 综合调用

这里用了time模块获取当前时间,然后生成目标文件夹名称的一部分。 

外界给python传的系统参数的第一个是文件名。这个文件就相当于C#项目里的Program文件一样,

里面会包含一个main函数。虽然这个函数不一定要命名为main。 

还有注意下,Python代码的换行符为\。 

 # main of dir copy function

import sys
import time
from code_bk_cpy import *
from code_bk_config import *

#print __name__

def main():
    config_path = sys.argv[1]
    
    # check if path of configuration path is empty
    if (not config_path):
        print 'configuration information is needed'
        return -1     

    config_handler = ConfigHandler(config_path)
    config_handler.read_config()
    config_list = config_handler.all_lines

    if len(config_list) != 3:
        print 'configuration information is not correct'
        return -1
    
    # set source
    sep = ':'
    current_datetime = time.localtime(time.time())
    root_path = config_list[0].split(sep)[1]
    prj_name = config_list[1].split(sep)[1]
    dst_path = config_list[2].split(sep)[1]

    root_path = (root_path + prj_name).replace('\n','')
    prj_folder = prj_name + str(current_datetime.tm_year) + str(current_datetime.tm_mon) + \
str(current_datetime.tm_mday) + str(current_datetime.tm_hour) + \
str(current_datetime.tm_min) + str(current_datetime.tm_sec)

    dst_path = (dst_path + '/' + prj_folder + '/').replace('\n','')

    copy_handler = CopyHandler(root_path,dst_path)
    copy_handler.move_content()

    print 'content moved'

    

# start main function
print __name__
if __name__ == "__main__":
    main()

 

有时间我会研究下TortoiseSVN调用那块的东西。估计不会难,就是调用exe传参的问题。

 

本人初学Python,如有问题敬请指正!谢谢。 

 

 

欢迎加群互相学习,共同进步。QQ群:iOS: 58099570 | Android: 330987132 | Go:217696290 | Python:336880185 | 做人要厚道,转载请注明出处!http://www.cnblogs.com/sunshine-anycall/archive/2011/04/05/2005971.html

时间: 2024-10-26 21:06:17

Python备份目录及目录下的全部内容的相关文章

python备份脚本提示文件名,目录或卷标语法出错(Windows7)

问题描述 python备份脚本提示文件名,目录或卷标语法出错(Windows7) 1C #Filename:backup_ver1.py import osimport time #1.the files and directories tobe backed up are specified in a listsource=['D:LibraryPcb''D:LibraryPLD'] target_dir='F:DD' target=target_dir+time.strftime('%Y%m

python实现搜索指定目录下文件及文件内搜索指定关键词的方法

本文实例讲述了python实现搜索指定目录下文件及文件内搜索指定关键词的方法.分享给大家供大家参考.具体实现方法如下: ? 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 61 #!/usr/bin/pyt

Python使用reportlab将目录下所有的文本文件打印成pdf的方法

  本文实例讲述了Python使用reportlab将目录下所有的文本文件打印成pdf的方法.分享给大家供大家参考.具体实现方法如下: ? 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 # -*- coding: utf8 -*- #~ #------------------------------------------------

Python实现扫描指定目录下的子目录及文件的方法_python

本文介绍了使用Python来扫描指定目录下的文件,或者匹配指定后缀和前缀的函数.步骤如下: 如果要扫描指定目录下的文件,包括子目录,需要调用scan_files("/export/home/test/") 如果要扫描指定目录下的特定后缀的文件(比如jar包),包括子目录,调用scan_files("/export/home/test/", postfix=".jar") 如果要扫描指定目录下的特定前缀的文件(比如test_xxx.py),包括子目

python文件操作之目录遍历实例分析

  本文实例讲述了python文件操作之目录遍历的方法.分享给大家供大家参考.具体分析如下: Python的os模块,包含了普遍的操作系统功能,这里主要学习与路径相关的函数: os.listdir(dirname):列出dirname下的目录和文件 os.getcwd():获得当前工作目录 os.curdir:返回当前目录('.') os.chdir(dirname):改变工作目录到dirname os.path.isdir(name):判断name是不是一个目录,name不是目录就返回fals

python实现复制整个目录的方法

  本文实例讲述了python实现复制整个目录的方法.分享给大家供大家参考.具体分析如下: python有一个非常好用的目录操作类库shutil,通过这个库可以很简单的复制整个目录及目录下的文件 ? 1 2 3 4 5 6 import shutil #复制文件 shutil.copyfile('listfile.py', 'd:/test.py') #复制目录 shutil.copytree('d:/temp', 'c:/temp/') #其余可以参考shutil下的函数 希望本文所述对大家的

Python操作文件和目录及文件读写

如果我们要在Python程序中执行目录和文件的操作,操作系统提供的命令只是简单地调用了操作系统提供的接口函数,Python内置的os模块也可以直接调用操作系统提供的接口函数. 打开Python交互式命令行,我们来看看如何使用os模块的基本功能: >>> import os>>> os.name # 操作系统名字'posix' 如果是posix,说明系统是Linux.Unix或Mac OS X,如果是nt,就是Windows系统. 要获取详细的系统信息,可以调用uname

我写的一个遍历目录以及目录下文件的函数,看看能不能放到精华区呀?

遍历|遍历目录|函数|精华 <%@ Language=VBScript %><%  '我写的一个遍历目录以及目录下文件的函数,%><%    function bianli(path)        set fso=server.CreateObject("scripting.filesystemobject")             on error resume next        set objFolder=fso.GetFolder(path

asp遍历目录以及目录下文件的函数

遍历|遍历目录|函数 <%@ Language=VBScript %> <% '我写的一个遍历目录以及目录下文件的函数, %> <% function bianli(path) set fso=server.CreateObject("scripting.filesystemobject") on error resume next set objFolder=fso.GetFolder(path) set objSubFolders=objFolder.