如何从ftp下载文件?

时间:2011-08-10 06:11:44

标签: python file ftp windows-xp install

我正在用python脚本编写安装脚本。

如何在python中从ftp下载文件?

操作系统 - Windows XP - 如果有所作为。

4 个答案:

答案 0 :(得分:6)

from urllib2 import urlopen
req = urlopen('ftp://ftp.gnu.org/README')

然后,您可以使用req.read()将文件内容加载到变量中或使用它执行任何其他操作,或shutil.copyfileobj将内容保存到磁盘而不将其加载到内存中。

答案 1 :(得分:3)

这是我目前正在使用的代码段。

import mimetypes
import os
import urllib2
import urlparse

def filename_from_url(url):
    return os.path.basename(urlparse.urlsplit(url)[2])

def download_file(url):
    """Create an urllib2 request and return the request plus some useful info"""
    name = filename_from_url(url)
    r = urllib2.urlopen(urllib2.Request(url))
    info = r.info()
    if 'Content-Disposition' in info:
        # If the response has Content-Disposition, we take filename from it
        name = info['Content-Disposition'].split('filename=')[1]
        if name[0] == '"' or name[0] == "'":
            name = name[1:-1]
    elif r.geturl() != url:
        # if we were redirected, take the filename from the final url
        name = filename_from_url(r.geturl())
    content_type = None
    if 'Content-Type' in info:
        content_type = info['Content-Type'].split(';')[0]
    # Try to guess missing info
    if not name and not content_type:
        name = 'unknown'
    elif not name:
        name = 'unknown' + mimetypes.guess_extension(content_type) or ''
    elif not content_type:
        content_type = mimetypes.guess_type(name)[0]
    return r, name, content_type

用法:

req, filename, content_type = download_file('http://some.url')

然后,您可以将req用作类似文件的对象,例如使用shutil.copyfileobj()将文件内容复制到本地文件中。如果MIME类型无关紧要,只需删除该部分代码。

由于您似乎很懒,这里的代码将文件直接下载到本地文件:

import shutil
def download_file_locally(url, dest):
    req, filename, content_type = download_file(url)        
    if dest.endswith('/'):
        dest = os.path.join(dest, filename)
    with open(dest, 'wb') as f:
        shutil.copyfileobj(req, f)
    req.close()

如果您指定以斜杠结尾的路径,此方法足够智能,可以使用服务器发送的文件名,否则它将使用您指定的目标。

答案 2 :(得分:1)

使用ftplib

文档中的代码示例:

>>> from ftplib import FTP
>>> ftp = FTP('ftp.cwi.nl')   # connect to host, default port
>>> ftp.login()               # user anonymous, passwd anonymous@
>>> ftp.retrlines('LIST')     # list directory contents
total 24418
drwxrwsr-x   5 ftp-usr  pdmaint     1536 Mar 20 09:48 .
dr-xr-srwt 105 ftp-usr  pdmaint     1536 Mar 21 14:32 ..
-rw-r--r--   1 ftp-usr  pdmaint     5305 Mar 20 09:48 INDEX
 .
 .
 .
>>> ftp.retrbinary('RETR README', open('README', 'wb').write)
'226 Transfer complete.'
>>> ftp.quit()

答案 3 :(得分:0)

from urllib.request import urlopen
try:
    req = urlopen('ftp://ftp.expasy.org/databases/enzyme/enzclass.txt')
except:
    print ("Error")
相关问题