`
lippeng
  • 浏览: 450856 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Python 同步文件

    博客分类:
  • Life
阅读更多

    很多东西,在电脑里 和 移动硬盘 里面都存了一份。算是为了安全,做了下备份吧!有时,出去还是带移动硬盘方便。比如,带些自己存的软件到公司机器上装一下,带些资料到公司去分享。

 

    自己电脑 和 移动硬盘上的数据,都用了同样的目录结构,要找什么,到那个地方就找到了。

 

    但是,自己电脑里的东西,会不断增多,移动硬盘也会在外面放入一些好东西。两边都会修改。

 

    要想保持两边数据完全同步,用git最好。只是,那样的话,太浪费硬盘了,俺移动硬盘才160G啊,经不起git的折腾。

 

    所以,退而求其次,写了段脚本来同步。虽然还是有问题,如果,在两边都修改了同一文件,不会进行比较,做merge操作,而是直接用新的文件来覆盖旧的。在大多数情况下,这段脚本还是能用的。

 

    我的环境是Python3.2。原则上3.0以上都能正常运行。

 

 

 

'''
Created on 2011-4-25

@author: barton
'''
import os
import shutil
import sys

source_folder = "/home/barton/Desktop/tmp" # 源 文件夹
target_folder = "/home/barton/Desktop/tmp2" # 目标 文件夹


def syncdir(source_folder, target_folder):
    """ 这里递归同步每一个文件夹下的文件 """
    
    if(not os.path.exists(target_folder)): # 目标文件夹不存在,就先建一个出来
        os.mkdir(target_folder)

    for file in os.listdir(source_folder): # 遍历 源文件夹下的所有文件(包括文件夹)。用os.path.walk,或许会更方便些,那样递归都省去了。
        
        from_file = os.path.join(source_folder, file)
        to_file = os.path.join(target_folder, file)
        
        if(os.path.isdir(from_file)): # 如果是文件夹,递归
            syncdir(from_file, to_file)
        else: 
            if(iscopy(from_file, to_file)): # 看是否需要拷贝
                shutil.copy2(from_file, target_folder) # 执行copy。。。
#                print("copy " + file + " from " + from_file + " to " + to_file + ";")
#                print("copy", file, "from", from_file, "to" , to_file , ";")
                print("copy %s from %s to %s;" % (file , from_file , to_file)) # 上面注释掉的2种写法都对。现在用的这种,更像是一句话。。。
            else:
                print("The file %s is exist" % to_file)


def iscopy(from_file, to_file):
    ''' 决断 是否 需要 拷贝。如果需要,返回True,否则返回False '''
    
    if(not os.path.exists(to_file)): # 目标文件还不存在,当然要拷过去啦
        return True
    
    from_file_modify_time = round(os.stat(from_file).st_mtime, 1) # 这里精确度为0.1秒
    to_file_modify_time = round(os.stat(to_file).st_mtime, 1) # 拿到 两边文件的最后修改时间
    if(from_file_modify_time > to_file_modify_time): # 比较 两边文件的 最后修改时间
        return True
    
    return False


if __name__ == '__main__':
    ''' 这里是传说中的 主入口 '''
#    if(not os.path.exists(source_folder) or not os.path.isdir(source_folder)):
    if(not os.path.isdir(source_folder)): # 发现第一个条件没有,也是一样的
        print("The source folder:%s is not exist" % source_folder)
        sys.exit() # 这个时候,就要退出江湖了。。。最初写的时候,敲了个return,哈哈。。。
        
    syncdir(source_folder, target_folder) # 这里是 同步的入口
    
    print("All files has been sync")


0
3
分享到:
评论
1 楼 lippeng 2011-09-18  
这篇文章做的事,完全是重新发明轮子。。。

早就有很好的软件来做这事了。。。

软件的名字叫:rsync,samba下面的。。。

相关推荐

Global site tag (gtag.js) - Google Analytics