pather icon indicating copy to clipboard operation
pather copied to clipboard

Manage file system structure using patterns. Parse, format and list your paths.

Results 4 pather issues
Sort by recently updated
recently updated
newest added

### Goal Implement a way to parse and list recursively where a single _key_ can be matched to an arbitrary or predefined depth. In a pattern like `test/{nested}/foo` allow both...

These two return the same results. ``` python >>> ls("project/assets/{item}/{task}") >>> ls("project/assets/{task}/{item}") ``` So why have keywords in there at all? ``` python >>> ls("project/assets/{}/{}") ``` And if I'm only...

enhancement

### Goal Currently `ls` offers an `include` argument to filter towards a subset as it queries the file system. A similar optimization could be put in place to exclude specific...

enhancement

### Goal If you'd want to filter to a subset of multiple values for a single key you'd currently have to perform multiple queries. Or a single larger query filtering...

enhancement