如何使用 Python 创建一个唯一的目录名称?
您可以使用 tempfile 模块以尽可能安全的方式创建一个唯一的临时目录。目录的创建过程中不存在竞争条件。该目录只能由创建它的用户 ID 读、写和搜索。请注意,mkdtemp() 的用户负责在使用完成后删除临时目录。要创建新临时目录,请按以下方法进行:-
import tempfile _, temp_dir_path = tempfile.mkdtemp() # Do what you want with this directory # And remove the directory when done
请注意,使用完成后您需要手动删除此目录。
广告