- 论坛徽章:
- 0
|
import os
import time
# 1. The files and directories to be backed up are specified in a list.
source = [r'e:\grub4dos',r'e:\firefox.txt']
# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that
# 2. The backup must be stored in a main backup directory
target_dir = 'e:\\back\\'
# 3. The files are backed up into a zip file.
# 4. The name of the zip archive is the current date and time
target = target_dir + time.strftime('%Y%m%d%H%M%S') + '.rar'
# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "D:\Progra~1\WinRAR\\rar.exe a -r -idq %s %s" % (target, ' '.join(source))
# Run the backup
if os.system(zip_command) == 0:
print 'Successful backup to', target
else:
print 'Backup FAILED'
我稍微修改了 简明python教程 里的一个例子,但是对转义符有点不大明白,希望高手解答一下,谢谢。
1:'e:\\back\\' ,为什么我用r‘e:\back\' 和“e:\back\” 会报错。
2:"D:\Progra~1\WinRAR\\rar.exe a -r -idq %s %s" % (target, ' '.join(source))
在WinRAR\\rar.exe 为什么要多一个\才行??
3:表示windos目录的表示还可以怎样写?
[ 本帖最后由 wblue 于 2008-10-15 18:19 编辑 ] |
|