首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

为何小弟我这个python程序不能执行备份操作

2012-02-19 
为何我这个python程序不能执行备份操作?import osimport timesource [re:\temp, re:\test]target_di

为何我这个python程序不能执行备份操作?


import os
import time

source = [r'e:\temp', r'e:\test']
target_dir = 'e:\\bak\\'
target = target_dir+time.strftime('%Y%m%d%H%M%S')+'.zip'

zip_command = "zip -qr '%s' %s" % (target,' '.join(source))

if os.system(zip_command) ==0:
  print 'Successfull bakcup to',target
else:
  print 'Bakcup Failed'

运行却显示:
Bakcup Failed
zip error: Invalid argument

zip error: Could not create output file ('e:/bak/20071108162355.zip')


[解决办法]
你zip命令你个用的不对吧?不是有提示么:
Invalid argument

热点排行