2011-09-27 51 views
0

問題是'我想要一個創建所有重要文件備份的程序'。壓縮命令和目錄(Windows)遇到問題

這節課位於: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和壓縮命令一起使用,這將很容易。任何援助表示讚賞。這是家庭作業閱讀,但沒有定義所有適用的工具時沒有幫助。

回答

1

您可以從http://info-zip.org/Zip.html得到zip程序,但我會建議使用Python的zipfile模塊。

此外,沒有標準的備份文件位置。你只需要做一個。

+0

優秀。該程序的d/l鏡像被凍結:( 我需要了解有關該模塊的信息 當我創建備份文件位置時,我可以在桌面上創建一個新文件夾並使用它,對吧? 謝謝! –

+0

您可以在ftp://garbo.uwasa.fi/pc/arcers/獲得一個較老的(但仍然有用)'zip'版本,並且您可以在桌面上使用一個文件夾進行備份。 – Gabe