python 创建命名临时文件和目录的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 创建命名临时文件和目录的示例相关的知识,希望对你有一定的参考价值。

from tempfile import NamedTempFile, TemporaryDirectory


with NamedTemporaryFile(suffix='.pdf') as tmp:
    # do your thing ...
  
  
with TemporaryDirectory() as dirpath:
    # do your thing ...
    
    
    
# tmp file/dir deleted after exiting context... 

以上是关于python 创建命名临时文件和目录的示例的主要内容,如果未能解决你的问题,请参考以下文章

tempfile库:Python临时文件系统对象

2.10临时文件命名与随机数

Python文件操作,看这篇就足够

Python3标准库:tempfile临时文件系统对象

Python tempfile (临时文件)

Python之文件操作:文件目录的操作