我在一个包含数百个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上运行它,如果这有所不同。