folders = [] with zipfile.ZipFile(zip_file_path) as zf: zf.extractall(root) for name in zf.namelist(): folder = Path(name).parts[0] if folder not in ...
確定! 回上一頁