import shutil
file_obj = request.files.get(‘code‘) # form表单提交的文件对象
target_path = os.path.join(‘uploadfiles‘, str(uuid.uuid4())) # 为了防止覆盖相同文件,在上传目录下随机生成一个目录shutil._unpack_zipfile(file_obj, target_path) # 获取form表单提交的文件对象后,直接解压到指定目录
原文地址:https://www.cnblogs.com/ttyypjt/p/11077549.html
时间: 2024-10-09 08:28:23