第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

下面的代碼運(yùn)行后,沒有輸出期望的 .zip 文件,什么情況?

下面的代碼運(yùn)行后,沒有輸出期望的 .zip 文件,什么情況?

BIG陽 2023-04-15 18:14:40
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 上運(yùn)行后,輸出為:>>>  Successfully created directory D:\ok\20121120111807Backup FAILED而沒有輸出期望的 .zip 文件
查看完整描述

2 回答

?
鴻蒙傳說

TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個(gè)贊

是否目錄下有程序正則使用導(dǎo)致打包失敗?
直接執(zhí)行cmd命令確定命令是否有效。

查看完整回答
反對 回復(fù) 2023-04-19
?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊

估計(jì)是這句的問題(單引號與雙引號)
zip_command = "zip -qr \"%s\" \"%s\"" % (target, ' '.join(source))
改成這樣
zip_command = "zip -qr %s %s" % (target, ' '.join(source))
試試

查看完整回答
反對 回復(fù) 2023-04-19
  • 2 回答
  • 0 關(guān)注
  • 95 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號