如何使用 Python 创建唯一目录名称?
你可以使用 tempfile 模块以尽可能最安全的方式创建唯一临时目录。目录的创建中不存在竞争条件。该目录只允许创建用户 ID 读写和搜索。注意,mkdtemp() 的用户负责在使用后删除临时目录。要创建新临时目录,使用如下方法 −
import tempfile _, temp_dir_path = tempfile.mkdtemp() # Do what you want with this directory # And remove the directory when done
注意,你需要手动删除这个目录,否则可能会造成问题。
广告