<<A Byte Of Python>>第10章的例子——备份文件和目录

  自从大四第一学期实习之后,我就没再用过Python了,现在几乎忘光了-_-!。觉得还是得好好学习一门脚本;趁着最近比较闲,学习一下Python,两个小时翻看了<<A Byte Of Python>>1到10章,照着教材把第10章的例子最后面的优化自己实现了一下:

  在命令行上面输入需要备份的文件或者目录,脚本自动进行备份,完全菜鸟级别的代码,贴出来当作复习功课。

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
# !/usr/bin/python
#
Filename: backup4.py

import os
import sys
import time

# 传递备份文件或目录给脚本
source = sys.argv[ 1 :]
if len(source) == 0:
print ' usage: enter the files or directores '
sys.exit()

target_dir
= ' /home/ken/backup_test/ '
today
= target_dir + time.strftime( ' %Y%m%d ' )
now
= time.strftime( ' %H%M%S ' )

if not os.path.exists(today):
os.mkdir(today)
print ' Successful create dir ' , today

commend
= raw_input( ' Enter the commend: ' )
if len(commend) == 0:
target
= today + os.sep + now + ' .zip '
else :
target
= today + os.sep + now + ' _ ' + \
commend.replace(
' ' , ' _ ' ) + ' .zip '

bakcup_command
= " tar -cvzf '%s' %s " % (target, ' ' .join(source))
if os.system(bakcup_command) == 0:
print ' Successful backup '
else :
print ' backup failed '

 

END

转载于:https://www.cnblogs.com/python_newbie/archive/2010/07/14/1777647.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值