一、可行性分析:
一般从经济、技术、社会、人四个方向分析。
二、需求分析:
需求分析就是需要实现哪些功能,这个很明了-文件备份
几个问题:
我们的备份位置?
什么时间备份?
备份哪些文件?
怎么样存储备份(文件类型)?
备份文件的名称?(需要通俗明了,一般是以当前时间命名)
三、实施过程:
方案一:
#!/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这个不推荐使用的函数。这个不推荐的原因今天问了下同事:
os.system是将内容传给c写的system函数,由对应系统处理,所以经常会遇到一些空格和引号的问题哈
而且c的system()本身就有一些限制,不更改,所以大家一般习惯于简单的可以用os.system,复杂的用subprocess.popen。
另外一方面可以通过交互式输入需要备份的目录然后用list的extend方法加到列表中去。这里我是直接把sys.argv列表的值全部赋值给一个空列表。
#!/usr/lib/env python
import sys
import os
import time
backlist=[]
backlist=sys.argv[1:]
if len(backlist)==0:
backlist.append('/root')
to='/mnt/'
today=to+time.strftime('%Y%m%d')
now=time.strftime('%H%M%S')
if not os.path.exists(today):
os.mkdir(today)
print 'Successfully created directory', today
comment=raw_input('pls input the comment for your backup files-->')
if len(comment)==0:
target=today+os.sep+now+'.tar.gz'
else:
target=today+os.sep+now+'-'+comment.replace(' ','_')+'.tar.gz'
gz_command="tar -czf %s %s"%(target,' '.join(backlist))
if os.system(gz_command)==0:
print 'successfull'
print os.sep
else:
print 'failed'
'
本文转自chenzudao51CTO博客,原文链接:http://blog.51cto.com/victor2016/1875945 ,如需转载请自行联系原作者