如何在Jython(或Python)如何將文件下載到特定的路徑在服務器:Python的
上下載通過HTTP文件到本地文件夾我的服務器上的下面的代碼可能工作
os.chdir("/path/to/change/to")
from urllib2 import urlopen
f = urlopen("http://some.server/some/directory/some.file")
但爲此我的當前工作目錄已更改。我想要在當前工作目錄中並將文件下載到我的服務器上的任何給定路徑。
任何幫助?
@whokares:使用'shutil.copy()'?你應該'輸入shutil',但'urllib.urlretrieve()'爲你做所有的事情:) – mouad 2011-06-16 14:27:01
是的,它得到了.. thnx btw – crackerplace 2011-06-16 14:30:00
@whokares:很高興它有幫助:) – mouad 2011-06-16 14:31:30