ZipFile(path) zip_list = zip_file.namelist() # 得到压缩包里所有文件 for f in zip_list: zip_file.extract(f, "ids") # 循环解压文件到指定目录 ...
確定! 回上一頁