[問題] 執行'將檔案壓縮'的script

看板Python作者 (桑尼)時間17年前 (2007/09/04 22:37), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/3 (看更多)
各位大大好, 不好意思小弟又來發問了 我照著a byte of python上的教學在學python 今天遇到了一個問題, 先直接供上程式碼 ------------------------------------------------------------------------------ #!/usr/bin/python # Filename: backup_ver1.py import os import time source = 'C:\\mp3s' target_dir = 'D:\\work\\' target = target_dir + time.strftime('%Y%m%d%H%M%S') + '.zip' rar_command = "rar a'%s' %s" % (target, source) if os.system(rar_command) == 0: print 'Successful backup to', target else: print 'Backup FAILED' ------------------------------------------------------------------------------ 當然, 不幸的, 執行後出現的是 'Backup FAILED'... 其實教學裡是以Linux為範例, 而我的OS 是XP 所以我改了一些地方, 但我的OS 基礎很差 不知道檔案夾路徑 跟 rar指令是否下錯了 請大大們給我一些指點, 萬分感謝,謝謝.. ps: a byte of python電子書之前有繁體中文的版本'咬一口python' 但我還沒存下來該網站就掛掉了.. 真是苦了我 再次感謝各位大大了!! -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 123.192.157.234
文章代碼(AID): #16tMsPGH (Python)
文章代碼(AID): #16tMsPGH (Python)