import os
import timesource = ['C:\\Program Files']
target_dir = 'D:\\ok\\' # Remember to change this to what you will be using# 3. The files are backed up into a zip file# 4. The current day is the name of the subdirectory in the main directorytoday=target_dir+time.strftime('%Y%m%d')# The current time is the name of the zip archivenow=time.strftime('%H%M%S')# Create the subdirectory if it isn't already thereif not os.path.exists(today):
os.mkdir(today) # make directory
print 'Successfully created directory',today# The name of the zip filetarget = target_dir + time.strftime('%Y%m%d%H%M%S') + '.zip'# 5. We use the zip command (in Unix/Linux) to put the files in a zip archivezip_command = "zip -qr \"%s\" \"%s\"" % (target, ' '.join(source))# Run the backupif os.system(zip_command) == 0 : print 'Successful backup to',targetelse: print 'Backup FAILED'上面的代码在python2.7 IDEL 上运行后,输出为:>>>
Successfully created directory D:\ok\20121120111807Backup FAILED而没有输出期望的 .zip 文件
添加回答
举报
0/150
提交
取消