这是我现在正在做的事情:

mysock = urllib.urlopen('http://localhost/image.jpg')
fileToSave = mysock.read()
oFile = open(r"C:\image.jpg",'wb')
oFile.write(fileToSave)
oFile.close
f=file('image.jpg','rb')
ftp.storbinary('STOR '+os.path.basename('image.jpg'),f)
os.remove('image.jpg')

将文件写入磁盘,然后立即删除它们似乎是在系统上避免的额外工作。我可以使用Python上传内存中的对象到FTP吗?

有帮助吗?

解决方案

因为 鸭子, ,文件对象(f 在您的代码中)只需要支持 .read(blocksize) 打电话 storbinary. 。面对这样的问题时,我会转到来源,在这种情况下,lib/python2.6/ftplib.py:

def storbinary(self, cmd, fp, blocksize=8192, callback=None):
    """Store a file in binary mode.  A new port is created for you.

    Args:
      cmd: A STOR command.
      fp: A file-like object with a read(num_bytes) method.
      blocksize: The maximum data size to read from fp and send over
                 the connection at once.  [default: 8192]
      callback: An optional single parameter callable that is called on
                on each block of data after it is sent.  [default: None]

    Returns:
      The response code.
    """
    self.voidcmd('TYPE I')
    conn = self.transfercmd(cmd)
    while 1:
        buf = fp.read(blocksize)
        if not buf: break
        conn.sendall(buf)
        if callback: callback(buf)
    conn.close()
    return self.voidresp()

如注释,它只想要一个 类似文件的对象, ,实际上它甚至不是特别像文件一样,它只需要 read(n). Stringio 提供此类“内存文件”服务。

其他提示

import urllib
import ftplib

ftp = ftplib.FTP(...)
f = urllib.urlopen('http://localhost/image.jpg')
ftp.storbinary('STOR image.jpg', f)

您可以使用任何内存 类似文件的对象, , 像 BytesIO:

from io import BytesIO

它在二进制模式下都可以使用 FTP.storbinary:

f = BytesIO(b"the contents")
ftp.storbinary("STOR /path/file.txt", f)

以及在ASCII/文本模式下 FTP.storlines:

f = BytesIO(b"the contents")
ftp.storlines("STOR /path/file.txt", f)

有关更高级的示例,请参见:

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top