作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试将 mkstemp 与 Python 3 结合使用:
Python 3.2.3 (default, Jun 25 2012, 23:10:56)
[GCC 4.7.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from tempfile import mkstemp
>>> mkstemp()
(3, '/tmp/tmp080316')
根据documentation ,元组的第一个元素应该是一个文件句柄。事实上,它是一个整数。如何获得正确的文件对象?
最佳答案
在mktemp
的文档中,您可以看到如何以您想要的方式使用NamedTemporaryFile
的示例:http://docs.python.org/dev/library/tempfile.html?highlight=mkstemp#tempfile.mktemp
>>> f = NamedTemporaryFile(delete=False)
>>> f
<open file '<fdopen>', mode 'w+b' at 0x384698>
这提供了与 mkstemp 相同的行为,但返回一个文件对象。
关于python - 如何从 mkstemp() 获取文件对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11926855/
我是一名优秀的程序员,十分优秀!