epogrebnyak / justpath

Inspect and refine PATH environment variable on Windows, Linux and MacOS.
GNU General Public License v3.0
337 stars 12 forks source link

deduplicate directories #5

Closed epogrebnyak closed 7 months ago

epogrebnyak commented 8 months ago

These are the same folder, should keep just 14.

24 C:\WINDOWS
14 C:\Windows

Should this be --remove-duplicates flag?

Duplicates may also display in yellow - can change the row data structure as:

@dataclass
class Duplicate:
   count: int

@dataclass
class Row:
  i: int
  path: Path
  error: FileNotFound | NotADirectoryError | Duplicate | None = None