压缩命令和目录(Windows)麻烦

时间:2011-09-27 23:45:11

标签: python zip ziparchive

问题是'我想要一个创建所有重要文件备份的程序'。

本课程位于:http://www.ibiblio.org/g2swap/byteofpython/read/problem-solving.html

 import os
import time

# 1. The files and directories to be backed up are specified in a list.
source = ['/home/swaroop/byte', '/home/swaroop/bin']
# 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 = '/mnt/e/backup/' # Remember to change this to what you will be using

# 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') + '.zip'

# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "zip -qr '%s' %s" % (target, ' '.join(source))

# Run the backup
if os.system(zip_command) == 0:
    print 'Successful backup to', target
else:
    print 'Backup FAILED'

我正在使用Windows。 对于#2,它在哪里,是否适用于Windows? 对于#5,我找不到用于压缩默认Windows压缩程序的文件的命令。

如果课程解释了如何在Windows和压缩命令中使用它,这将很容易。任何帮助表示赞赏。这是家庭作业阅读,但如果没有定义所有适用的工具,它就无济于事。

1 个答案:

答案 0 :(得分:1)

您可以从http://info-zip.org/Zip.html获得zip程序,但我建议您只使用Python的zipfile模块。

此外,没有标准的备份文件位置。你只需要做一个。