uuid 生成文件名(防止文件夹重名)

import uuid(先导入uuid)
filename=uuid.uuid4().hex
写入文件
with open(f"upload/{filename}",“wb”) as f:

你可能感兴趣的:(uuid 生成文件名(防止文件夹重名))