Check if a file exists
Future<bool> fileExists(String fileId) async { try { await retrieveFile(fileId); return true; } catch (e) { return false; } }