1. 首页
  2. 数据库
  3. 其它
  4. Python创建临时文件和文件夹

Python创建临时文件和文件夹

上传者: 2020-12-23 03:47:42上传 PDF文件 61.02KB 热度 27次
问题 你需要在程序执行时创建一个临时文件或目录,并希望使用完之后可以自动销毁掉。 解决方案 tempfile 模块中有很多的函数可以完成这任务。 为了创建一个匿名的临时文件,可以使用 tempfile.TemporaryFile : from tempfile import TemporaryFile with TemporaryFile('w+t') as f: # Read/write to the file f.write('Hello World\n') f.write('Testing\n') # Seek back to beginning an
用户评论