共计 624 个字符,预计需要花费 2 分钟才能阅读完成。
Python 的 tempfile
模块是用来创建临时文件和临时文件夹的工具。以下是使用 tempfile
模块的一些常见方法:
- 创建临时文件:
import tempfile
# 创建一个临时文件,返回一个文件对象
temp_file = tempfile.NamedTemporaryFile()
# 获取临时文件的路径
temp_file_path = temp_file.name
# 关闭临时文件
temp_file.close()
- 创建临时文件夹:
import tempfile
# 创建一个临时文件夹,返回文件夹的路径
temp_dir = tempfile.TemporaryDirectory()
# 获取临时文件夹的路径
temp_dir_path = temp_dir.name
# 关闭临时文件夹,并删除其中的所有文件
temp_dir.cleanup()
- 在内存中创建临时文件:
import tempfile
# 在内存中创建一个临时文件,返回一个文件对象
temp_file = tempfile.SpooledTemporaryFile()
# 将数据写入临时文件
temp_file.write(b'Hello, World!')
# 将临时文件中的数据读取出来
temp_file.seek(0)
data = temp_file.read()
# 关闭临时文件
temp_file.close()
这些只是 tempfile
模块提供的一些常见用法,还有其他更多的方法和选项可以根据具体需求使用。
丸趣 TV 网 – 提供最优质的资源集合!
正文完