mytree 0.1.4

A fast CLI tool to visualize directory structures with filtering and formatting
Documentation
# mytree

[`mytree`](https://crates.io/crates/mytree) is a small Rust CLI that prints a directory tree to the terminal.  
The output can be filtered (by extension or regex), include hidden items, show long-format metadata, be streamed through a pager, written to a file (optionally **gzip**-compressed), or emitted as machine-readable JSON.

---

## Installation

```bash
# needs Rust ≥1.70
cargo install mytree  # grabs the latest release from crates.io
```

> The binary will be installed to `$HOME/.cargo/bin`; make sure this directory is in your `PATH`.
> You can also find `mytree` on [crates.io]https://crates.io/crates/mytree.

## Features

1. Printing directories and files in alphabetical order [x]
2. Filtering results by file extension [x]
3. Filtering results by regex [x]
4. Filtering results by hidden-items [x]
5. Toggle long-format meta-data [x]
6. Sort results by file-size [x]
7. Sort results by last_updated_time [x]
8. Write results as JSON to a file [x]

**Please send feature requests!** I would love to hear what would make *mytree* even more useful.

---