profilesDir property

String get profilesDir

Get the profiles directory path

Implementation

static String get profilesDir {
  final home =
      Platform.environment['HOME'] ?? Platform.environment['USERPROFILE'];
  if (home == null) {
    throw Exception('Could not determine home directory');
  }
  return p.join(home, '.claudio', 'profiles');
}