如何在Python中创建一个临时目录并获取路径/文件名

最佳答案

使用 mkdtemp() 模块中的 tempfile 函数:

import tempfile
import shutil

dirpath = tempfile.mkdtemp()
# ... do stuff with dirpath
shutil.rmtree(dirpath)

10-04 21:01