在python 2.7中下载并保存文件? [英] Download and Save a file in python 2.7?

查看:145
本文介绍了在python 2.7中下载并保存文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

来自这里:

基本的http文件下载并保存到python中的磁盘?

是否有可能保存文件在任何文件夹?我试过这个但是我收到错误:

Is there any possibility to save the file in any folder? I tried this but i get error:

IOError:[Errno 2]没有这样的文件或目录:

IOError: [Errno 2] No such file or directory:

import urllib

testfile=urllib.URLopener()
testfile.retrieve("http://randomsite.com/file.gz","/myfolder/file.gz")

有什么可能吗?

推荐答案

你最有可能得到这个错误,因为/ myfolder不存在。尝试创建它

You're most likely getting that error because /myfolder doesn't exist. Try creating it first

import os
import os.path
import urllib

destination = "/path/to/folder"
if os.path.exists(destination) is False:
    os.mkdirs(destination)
# You can also use the convenience method urlretrieve if you're using urllib anyway
urllib.urlretrieve("http://randomsite.com/file.gz", os.path.join(destination, "file.gz"))

这篇关于在python 2.7中下载并保存文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆