在Python 3中解压缩文件

时间:2016-08-05 14:03:45

标签: python-3.x extract windows-server-2008 unzip zipfile

我在一个包含数百个zip文件夹的文件夹中有一个脚本。我正在尝试将其中一个文件夹提取到我当前所在的目录中。我想要提取的文件是每天运行两次的扫描的最新复制。

这是我的全局

currentdir = str(Path.cwd())
sorted_list = sorted(glob.iglob('blahblahblah*.zip'), key=os.path.getctime)
newFile = sorted_list[-1]#get the newest CSV file in the directory
oldFile = sorted_list[-2]#get the 2nd newest CSV file in the directory

这是我的方法

def extractZip(fileName, dest):
    zf = zipfile.ZipFile(fileName, 'r').extractall('.')

当我运行代码时,我没有收到任何错误,但目录中没有任何文件夹的任何想法?我在Windows Server 2008上运行它,如果这有所不同。

0 个答案:

没有答案