摘要: def unzip_file(zip_src, dst_dir): r = zipfile.is_zipfile(zip_src) if r: fz = zipfile.ZipFile(zip_src, 'r') for file in fz.namelist(): fz.extract(file, 阅读全文
posted @ 2021-04-22 13:03 ArdenWang 阅读(167) 评论(0) 推荐(0)