文件是否是PPT
static bool isPPT(String filePath) { final ext = filePath.toLowerCase(); return ext.endsWith(".ppt") || ext.endsWith(".pptx"); }