删除文件
static Future<void> deleteFile(String filePath) async { final file = File(filePath); if (file.existsSync()) file.deleteSync(); }