python – 你可以将文件内容转换为文件对象吗?

我有一个函数期望一个文件对象,简化示例:

def process(fd):
    print fd.read()

通常称为:

fd = open('myfile', mode='r')
process(fd)

我无法更改此功能,并且我已经在内存中拥有该文件的内容.有没有办法将文件内容转换为文件对象而不将其写入磁盘,所以我可以这样做:

contents = 'The quick brown file'
fd = convert(contents) # ??
process(fd)

最佳答案 您可以使用
StringIO执行此操作:

This module implements a file-like class, StringIO, that reads and
writes a string buffer (also known as memory files).

from StringIO import StringIO

def process(fd):
    print fd.read()

contents = 'The quick brown file'

buffer = StringIO()
buffer.write(contents)
buffer.seek(0)

process(buffer)  # prints "The quick brown file"

请注意,在Python 3中它被移动到io包中 – 您应该使用io import StringIO而不是StringIO import StringIO.

点赞