判断文件是否是静态图片
static bool isStaticImage(String fileName, [List<String>? ext]) => (ext ?? ['jpg', 'jpeg', 'png']).contains(getFileSuffix(fileName));