Is this entry dvc-tracked?
(self, path, **kwargs)
| 369 | return dvc_fs.open(dvc_path, mode=mode, cache=kwargs.get("cache", False)) |
| 370 | |
| 371 | def isdvc(self, path, **kwargs) -> bool: |
| 372 | """Is this entry dvc-tracked?""" |
| 373 | try: |
| 374 | return self.info(path).get("dvc_info", {}).get("isout", False) |
| 375 | except FileNotFoundError: |
| 376 | return False |
| 377 | |
| 378 | def ls(self, path, detail=True, dvc_only=False, **kwargs): # noqa: C901, PLR0912 |
| 379 | key = self._get_key_from_relative(path) |