Python入门者小练习
练习适用于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)方法见: 字符串方法
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。