(self)
| 653 | return self.fs.is_empty(self.fs_path) |
| 654 | |
| 655 | def isdir(self) -> bool: |
| 656 | if self._is_path_dvcignore(self.fs_path): |
| 657 | return False |
| 658 | return self.fs.isdir(self.fs_path) |
| 659 | |
| 660 | def isfile(self) -> bool: |
| 661 | if self._is_path_dvcignore(self.fs_path): |