我一直在編碼下載,我每次運行它時,它說:
Traceback (most recent call last):
File "C:\Python27\Downloader.py", line 7, in <module>
f = open('c:\\users\%USERNAME%\AppData\Roaming\.minecraft\mods\CreeperCraft.zip', 'wb+')
IOError: [Errno 2] No such file or directory: 'c:\\users\\%USERNAME%\\AppData\\Roaming\\.minecraft\\mods\\CreeperCraft.zip'
我現在,你可能會說,創建一個文件,但我想要的腳本來創建文件。
那麼,有人可以告訴我該怎麼修復?這是代碼:
import urllib2
import os
import shutil
url = "https://dl.dropbox.com/u/29251693/CreeperCraft.zip"
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open('c:\\users\%USERNAME%\AppData\Roaming\.minecraft\mods\CreeperCraft.zip', 'wb+')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100./file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
確保該目錄存在,如果沒有,請使用[makedirs](http://docs.python.org/library/os.html#os.makedirs)來製作它。 – 2012-08-07 15:05:51
Python的'open'函數是否真的在Windows上擴展環境變量? ('c:\\ users \%USERNAME%\ AppData \ Roaming \ .minecraft \ mods \ CreeperCraft.zip') – Dirk 2012-08-07 15:06:22
您可能更適合使用'%APPDATA'而不是'C:\ Users \%USERNAME \ AppData \ Roaming'。另外,使用原始字符串('r'c:\ ...')或正斜槓來避免在路徑中加雙反斜槓。 – lvc 2012-08-07 15:13:02