当前位置: 首页 > 图文教程 > 脚本技术 > Python > python备份文件的脚本

Python
Python入门教程 超详细1小时学会Python
复制粘贴功能的Python程序
python远程登录代码
Python Mysql自动备份脚本
py中的目录与文件判别代码
python下如何让web元素的生成更简单的分析
Python 文件操作技巧(File operation) 实例代码分析
python备份文件的脚本
Python备份Mysql脚本
rhythmbox中文名乱码问题解决方法
Python交换变量
Python字符遍历的艺术
Python字符转换
Python isinstance判断对象类型
Python ljust rjust center输出
Python strip lstrip rstrip使用方法
Python 连接字符串(join %)
Python 字符串中的字符倒转
Python translator使用实例
Python 除法小技巧

Python 中的 python备份文件的脚本


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 168 ::
收藏到网摘: n/a

作用:将目录备份到其他路径。

实际效果:假设给定目录"/media/data/programmer/project/python" ,备份路径"/home/diegoyun/backup/“ , 则会将python目录下的文件按照全路经备份到备份路径下,形如:

/home/diegoyun/backup/yyyymmddHHMMSS/python/xxx/yyy/zzz.....

复制代码 代码如下:

import os
import shutil
import datetime
def mainLogic():
#add dirs you want to copy
backdir="I:\\backup"
copydirs=[]
copydirs.append("D:\\programmer")
copydirs.append("D:\\diegoyun")
print "Copying files ==================="
start=datetime.datetime.now()
#gen a data folder for backup
backdir=os.path.join(backdir,start.strftime("%Y-%m-%d"))
#print "backdir is:"+backdir

kc=0
for d in copydirs:
kc=kc+copyFiles(d,backdir)
end=datetime.datetime.now()
print "Finished! ==================="
print "Total files : " + str(kc)
print "Elapsed time : " + str((end-start).seconds)+" seconds"
def copyFiles(copydir,backdir):
prefix=getPathPrefix(copydir)
#print "prefix is:"+prefix
i=0
for dirpath,dirnames,filenames in os.walk(copydir):
for name in filenames:
oldpath=os.path.join(dirpath,name)
newpath=omitPrefix(dirpath,prefix)
print "backdir is:"+backdir
newpath=os.path.join(backdir,newpath)
print "newpath is:"+newpath
if os.path.exists(newpath)!=True:
os.makedirs(newpath)
newpath=os.path.join(newpath,name)
print "From:"+oldpath+" to:"+newpath
shutil.copyfile(oldpath,newpath)
i=i+1
return i
def getPathPrefix(fullpath):
#Giving /media/data/programmer/project/ , get the prefix
#/media/data/programmer/
l=fullpath.split(os.path.sep)
#print str(l[-1]=="")
if l[-1]=="":
tmp=l[-2]
else:
tmp=l[-1]
return fullpath[0:len(fullpath)-len(tmp)-1]
def omitPrefix(fullpath,prefix):
#Giving /media/data/programmer/project/python/tutotial/file/test.py ,
#and prefix is Giving /media/data/programmer/project/,
#return path as python/tutotial/file/test.py
return fullpath[len(prefix)+1:]
mainLogic()