expectedBackupPath property

String expectedBackupPath

The expected file system path, where backups should be stored at.

Ignores platform validations.

Implementation

String get expectedBackupPath {
  if (useShortDirectoryNaming) {
    return mediaLocation.path + applicationName;
  }
  return mediaLocation.path + organizationName + '/' + applicationName;
}