getRevaliFile method

Future<File> getRevaliFile(
  1. String basename
)

retrieves the file within getRevali dir

Should be 1 level deep only

The file may NOT exist

Implementation

Future<File> getRevaliFile(String basename) async {
  final revali = await getRevali();
  final normalized = p.normalize(p.join(revali.path, basename));
  final relative = p.relative(normalized, from: revali.path);

  return revali.childFile(relative);
}