Check whether all directories exist asynchronously
Does not check any sub-stores.
Implementation
Future<bool> get readyAsync async => (await Future.wait<bool>([
_access.stores.exists(),
_access.stats.exists(),
_access.recovery.exists(),
]))
.every((e) => e);