Returns whether a file already exists at targetPath.
targetPath
@override Future<bool> fileExists(String targetPath) async { final resolved = await _resolve(targetPath); return File(resolved).exists(); }