Check if a profile exists
Future<bool> profileExists(String name) async { final file = File(_getProfilePath(name)); return file.exists(); }