标签:
练习适用于LINUX,类Unix系统,一步一个脚印提高Python 。
001. 类Unix系统中用zip命令将文件压缩备份至 /temporary/ 目录下:
import os import time old_files = [‘/home/zhg/aa.py‘,‘home/zhg/bb.py‘] target_dir = ‘/temporary/‘ target = target_dir + time.strftime(‘%Y%m%d%H%M%S‘) + ‘.zip‘ zip_command = "zip -qr %s %s" % (target,‘ ‘.join(old_files)) if os.system(zip_command) == 0: print "Successful backup to",target_dir else: print "error backup failed"
# Linux中上一次命令执行成功会返回0
# ‘ ‘.join(sequence)方法见: 字符串方法
标签:
原文地址:http://www.cnblogs.com/zhanhg/p/4377518.html