Whether absPath exists (file or directory).
absPath
@override Future<bool> exists(String absPath) async => File(absPath).existsSync() || Directory(absPath).existsSync();