码迷,mamicode.com
首页 > 编程语言 > 详细

简明python教程读书笔记(二)之为重要文件备份

时间:2016-11-24 00:06:57      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:文件备份

一、可行性分析:

一般从经济、技术、社会、人四个方向分析。


二、需求分析:

需求分析就是需要实现哪些功能,这个很明了-文件备份

几个问题:

我们的备份位置?

什么时间备份?

备份哪些文件?

怎么样存储备份(文件类型)?

备份文件的名称?(需要通俗明了,一般是以当前时间命名)


三、实施过程:

方案一:

#!/usr/lib/env python

import os
import time
backlist=[‘/etc‘,‘/root‘]
to=‘/mnt/‘

target=to+time.strftime(‘%Y%m%d%H%M%S‘)+‘.tar.gz‘

gz_command="tar -czf %s %s"%(target,‘ ‘.join(backlist))

if os.system(gz_command)==0:
        print ‘successfull‘
else:
        print ‘failed‘



改进方案二:

方案二主要是考虑到多建日期子目录,这样更加明了
today = target_dir + time.strftime(‘%Y%m%d‘)
now = time.strftime(‘%H%M%S‘)

if not os.path.exists(today):
os.mkdir(today) # make directory
print ‘Successfully created directory‘, today

target = today + os.sep + now + ‘.zip‘
zip_command = "zip -qr ‘%s‘ %s" % (target, ‘ ‘.join(source))


注意:os.sep代表/或者\



改进方案三:可以给备份文件名称加注解:

#!/usr/bin/env python

import os

import time

source=[‘/var/log‘,‘/etc/ssh‘]


target=‘/mnt/‘


today=target+time.strftime(‘%Y%m%d‘)

now=time.strftime(‘%H%M%S‘)

comment=raw_input(‘pls input the comment-->‘)


if len(comment)==0:

        target1=today+os.sep+now+‘.tar.gz‘

else:

        target1=today+os.sep+now+‘_‘+comment.replace(‘ ‘,‘_‘)+‘.tar.gz‘

if not os.path.exists(today):

        os.mkdir(today)

comm="tar -czf %s %s"%(target1,‘ ‘.join(source))


if os.system(comm)==0:

        print ‘successfull‘

else:

        print ‘failed‘



方案四:增加交互性

最理想的创建这些归档的方法是分别使用zipfile和tarfile模块。它们是Python标准库的一部分,可以

供你使用。使用这些库就避免了使用os.system这个不推荐使用的函数。

另外一方面可以通过交互式输入需要备份的目录然后用list的extend方法加到列表中去。



本文出自 “Victor的奋斗历程” 博客,请务必保留此出处http://victor2016.blog.51cto.com/6768693/1875945

简明python教程读书笔记(二)之为重要文件备份

标签:文件备份

原文地址:http://victor2016.blog.51cto.com/6768693/1875945

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!