我们在编程中,会是时不时的创建临时文件,这是因为临时文件不用命名,关闭后会自动被删除,很方便的帮助我们存储临时文件,只需通过对象来访问查找使用。本文介绍python中使用TemporaryFile()方法创建临时文件的过程。
一、Python创建临时文件方法tempfile.TemporaryFile()
创建的临时文件,关闭后会自动删除。
该方法返回一个类文件对象,用于临时数据保存(实际上对应磁盘上的一个临时文件)。
生成的对象可以用作上下文管理器。完成文件对象的上下文或销毁后(文件对象被 close 或者被 del),临时文件将从文件系统中删除。
二、python使用TemporaryFile()方法创建临时文件步骤
1、创建临时文件
importtempfile importos #创建文件 file=tempfile.TemporaryFile(mode="w+") print(file.name) #4 print(os.path.exists(file.name)) #True
2、写入、读取文件
file.write("helloworld") file.seek(0) print(file.read()) #helloworld
3、关闭文件(这里会把临时文件删除)
file.close() print(os.path.exists(file.name)) #False