不多废话,直接上源码
import os
import os.path
import pptx
total = 0
def pptCount(path):
# 声明全局变量
global total
# 遍历文件夹中所有文件或子文件夹
for subPath in os.listdir(path):
subPath = os.path.join(path, subPath)
if os.path.isdir(subPath):
# 递归遍历子文件夹
pptCount(subPath)
elif subPath.endswith('.pptx'):
# 显示正在处理的文件名
print(subPath)
# 统计幻灯片数量
presentation = pptx.Presentation(subPath)
total += len(presentation.slides)
# xxx中填入你要统计的多个ppt文件的父文件夹所在位置,例如'F:\\教学课件\\Python程序设计(第二版)'
pptCount('xxx')
print('总页数: ',total)
需要说明的是如果没有下载过pptx这个库的话,需要在终端输入
pip install python-pptx
来安装python相应的pptx处理库