python解压缩zip到指定位置
时间: 2023-11-24 08:49:32 浏览: 156
python 实现压缩和解压缩zip文件
可以使用Python内置的zipfile模块来解压缩zip文件到指定位置。具体步骤如下:
1. 使用zipfile.ZipFile打开zip文件。
2. 使用ZipFile对象的extractall方法解压缩文件到指定位置。
下面是一个示例代码:
```python
import zipfile
def unzip_file(zip_file_path, extract_path):
with zipfile.ZipFile(zip_file_path, 'r') as zip_ref:
zip_ref.extractall(extract_path)
unzip_file('example.zip', '/path/to/extract')
```
在上面的代码中,`zip_file_path`是要解压缩的zip文件的路径,`extract_path`是要解压缩到的目标路径。`with`语句会自动关闭ZipFile对象,确保资源被正确释放。
阅读全文