> 백엔드 개발 > 파이썬 튜토리얼 > Python은 폴더 동기화를 구현합니다.

Python은 폴더 동기화를 구현합니다.

巴扎黑
풀어 주다: 2016-12-19 13:59:29
원래의
2058명이 탐색했습니다.

/usr/local/a 폴더에서 /usr/local/b 폴더로 두 폴더의 내용을 동기화하는 데 사용되는 SynDirTool 클래스를 정의합니다. 실행 방법:

Python 코드

python SynDirTool.py /usr/local/a  /usr/local/b
로그인 후 복사

SynDirTool.py 파일 내용:

#!/usr/bin/python
# -*- coding:utf-8 -*-
import os
import shutil
import sys
import logging
class SynDirTool:
def __init__(self,fromdir,todir):
self.fromdir = fromdir
self.todir = todir
def synDir(self):
return self.__copyDir(self.fromdir,self.todir)
def __copyDir(self,fromdir,todir):
#防止该目录不存在,创建目录
self.__mkdir(todir)
count = 0
for filename in os.listdir(fromdir):
if filename.startswith('.'):
continue
fromfile = fromdir + os.sep + filename
tofile = todir + os.sep + filename
if os.path.isdir(fromfile):
count += self.__copyDir(fromfile,tofile)
else:
count += self.__copyFile(fromfile,tofile)
return count
def __copyFile(self,fromfile,tofile):
if not os.path.exists(tofile) :
shutil.copy2(fromfile,tofile)
logging.info("新增%s ==> %s" % (fromfile,tofile))
return 1
fromstat = os.stat(fromfile)
tostat = os.stat(tofile)
if fromstat.st_ctime > tostat.st_ctime:
shutil.copy2(fromfile,tofile)
logging.info("更新%s ==> %s" % (fromfile,tofile))
return 1
return 0
def __mkdir(self,path):
# 去除首位空格
path=path.strip()
# 去除尾部 \ 符号 或者 /
path=path.rstrip(os.sep)
# 判断路径是否存在
isExists=os.path.exists(path)
# 判断结果
if not isExists:
# 如果不存在则创建目录
logging.info(path+' 目录创建成功')
# 创建目录操作函数
os.makedirs(path)
if __name__ == '__main__':
srcdir=sys.argv[1]
descdir=sys.argv[2]
logging.basicConfig(filename='SynDirTool.log', level=logging.INFO)
tool = SynDirTool(srcdir,descdir)
count += tool.synDir()
로그인 후 복사


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿