UnZip
洛 2021/10/30
# gma.osf.UnZip(ZipFilePath, OutPath)
功能:【解压缩】。解压缩 .zip 文件。
参数:
ZipFilePath:str
。需要解压缩的 .zip 文件路径。
OutPath:str
。解压后存储文件的路径。
示例:
from gma import osf
# 压缩 SENT_RS_LY_20220305.zip 文件至 SENT2_RS_UNZip 文件夹
osf.UnZip('SENT_RS_LY_20220305.zip', 'SENT2_RS_UNZip')
1
2
3
4
2
3
4