获取应用程序支持路径
Future<String?> getLocalSupportDir() async { try { final dir = await getApplicationSupportDirectory(); return dir.path; } catch (e) { logger.e(tag: TAG, e); return null; } }