Python写的备份目录文件的脚本
#!/usr/bin/python
# -*- coding: utf-8 -*-
#filename back.py
#author superchen
import os
import time
source =‘/home/shiyanlou/Documents/‘
target_dir = ‘/home/shiyanlou/Desktop‘
target = target_dir+time.strftime(‘%Y-%m-%d-%H-%M-%S‘)+‘.zip‘
zip_command = "zip -qr %s %s" %(target,‘‘.join(source))
#q命令是安静运行r命令是递归的执行
if os.system(zip_command)==0:
print ‘sucessful backup‘
else:
print "backup failed"
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。