<i id='j7zt4'><tr id='j7zt4'><dt id='j7zt4'><q id='j7zt4'><span id='j7zt4'><b id='j7zt4'><form id='j7zt4'><ins id='j7zt4'></ins><ul id='j7zt4'></ul><sub id='j7zt4'></sub></form><legend id='j7zt4'></legend><bdo id='j7zt4'><pre id='j7zt4'><center id='j7zt4'></center></pre></bdo></b><th id='j7zt4'></th></span></q></dt></tr></i><div id='j7zt4'><tfoot id='j7zt4'></tfoot><dl id='j7zt4'><fieldset id='j7zt4'></fieldset></dl></div>

    1. <small id='j7zt4'></small><noframes id='j7zt4'>

        <tfoot id='j7zt4'></tfoot><legend id='j7zt4'><style id='j7zt4'><dir id='j7zt4'><q id='j7zt4'></q></dir></style></legend>
          <bdo id='j7zt4'></bdo><ul id='j7zt4'></ul>

        在 python 2.7 中下载并保存文件?

        时间:2023-10-19
        • <bdo id='JfSng'></bdo><ul id='JfSng'></ul>
          <i id='JfSng'><tr id='JfSng'><dt id='JfSng'><q id='JfSng'><span id='JfSng'><b id='JfSng'><form id='JfSng'><ins id='JfSng'></ins><ul id='JfSng'></ul><sub id='JfSng'></sub></form><legend id='JfSng'></legend><bdo id='JfSng'><pre id='JfSng'><center id='JfSng'></center></pre></bdo></b><th id='JfSng'></th></span></q></dt></tr></i><div id='JfSng'><tfoot id='JfSng'></tfoot><dl id='JfSng'><fieldset id='JfSng'></fieldset></dl></div>
          1. <tfoot id='JfSng'></tfoot>
            <legend id='JfSng'><style id='JfSng'><dir id='JfSng'><q id='JfSng'></q></dir></style></legend>
                <tbody id='JfSng'></tbody>

              • <small id='JfSng'></small><noframes id='JfSng'>

                  本文介绍了在 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 中下载并保存文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:matplotlib 动画保存不遵守 blit=True 但它似乎在 plt.show() 中工作得很好 下一篇:通过 Blender python 渲染和保存图像

                  相关文章

                • <small id='9wXrY'></small><noframes id='9wXrY'>

                  <tfoot id='9wXrY'></tfoot>
                  <i id='9wXrY'><tr id='9wXrY'><dt id='9wXrY'><q id='9wXrY'><span id='9wXrY'><b id='9wXrY'><form id='9wXrY'><ins id='9wXrY'></ins><ul id='9wXrY'></ul><sub id='9wXrY'></sub></form><legend id='9wXrY'></legend><bdo id='9wXrY'><pre id='9wXrY'><center id='9wXrY'></center></pre></bdo></b><th id='9wXrY'></th></span></q></dt></tr></i><div id='9wXrY'><tfoot id='9wXrY'></tfoot><dl id='9wXrY'><fieldset id='9wXrY'></fieldset></dl></div>

                      <legend id='9wXrY'><style id='9wXrY'><dir id='9wXrY'><q id='9wXrY'></q></dir></style></legend>
                      • <bdo id='9wXrY'></bdo><ul id='9wXrY'></ul>