Crates.io | trees-rs |
lib.rs | trees-rs |
version | 0.1.1 |
source | src |
created_at | 2024-06-19 22:44:41.345434 |
updated_at | 2024-06-19 23:12:24.054686 |
description | tree-rs is a drop-in replacement for the tree utility (ASCII tree view of folder directory), but written in Rust. The primary goal of this project is to provide a non-bloated and more functional alternative to the existing tree utility. |
homepage | |
repository | |
max_upload_size | |
id | 1277410 |
size | 105,027 |
Trees-rs is a command-line tool developed in pure Rust, designed for displaying directory structures in ASCII format on the terminal or saving them to a text file. It serves as a seamless replacement for the tree utility written in C. The primary goal of this project is to provide a non-bloated and more functional alternative to the existing tree.
Run:
cargo install trees-rs
or you can build from source with:
cargo build --release
Tree-rs offers several command line options:
$ trs -h
Usage: tree-rs [OPTIONS]
Options:
-V, --version Print current version of Tree-rs.
-A, --absolute Print file/dir name along with it absolute path
-f, --relative Print file/dir name along with it relative path
-r, --reverse Sort entires in ascending order.
-S, --no-sort No entries sort.
-s, --sort Sort entries.
-F, --filesfirst Sort files first.
-c, --color Print entries with color.
-C, --color-less Print entries without color.
--visible Print visible entries only.
--all Print all entries.
--folder Print directoris only.
-m, --meta Print all default entry's metadata.
-p, --permission Print entires attribute.
--btime Print the date that the entry was created.
--mtime Print the date that the entry was modified.
--atime Print the date that the entry was last time accessed.
--size Print entires's size.
-L, --level <level-bounds> Print tree until certain depth. Default depth: 5000
-y, --yield Print exhaustive report
-B, --nobranch Discard branch's stick from the output
-h, --help Print help
$ trs src -m
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 src
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 ├── cli
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 7286 │ ├── app.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 19:05 19-06-2024 19:05 6465 │ ├── arg.rs
.rw-r--r-- 15-05-2024 18:19 15-05-2024 18:19 19-06-2024 11:58 26 │ └── mod.rs
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 ├── config
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 7009 │ ├── color.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 2726 │ ├── inspect.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 81 │ ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 5970 │ ├── registry.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 6205 │ ├── root.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 871 │ └── sorting.rs
drwxr-xr-x 25-04-2024 08:51 30-04-2024 07:41 19-06-2024 13:16 4096 ├── error
.rw-r--r-- 25-04-2024 08:51 03-04-2024 10:14 19-06-2024 11:58 16 │ ├── mod.rs
.rw-r--r-- 30-04-2024 07:41 30-04-2024 07:41 19-06-2024 11:58 1860 │ └── simple.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 892 ├── main.rs
drwxr-xr-x 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:38 4096 ├── render
drwxr-xr-x 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:38 4096 │ ├── attr
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1129 │ │ ├── atime.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1120 │ │ ├── btime.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 72 │ │ ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1129 │ │ ├── mtime.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 2286 │ │ ├── pms.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 869 │ │ └── size.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1690 │ ├── buffer.rs
drwxr-xr-x 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:38 4096 │ ├── entree
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 993 │ │ ├── dirr.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1056 │ │ ├── filee.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 3045 │ │ ├── headd.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 63 │ │ ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1051 │ │ └── symlinked.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 46 │ └── mod.rs
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 ├── report
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 378 │ ├── depth.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 59 │ ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 82 │ ├── size.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 3645 │ ├── tail.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 152 │ └── widest.rs
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 ├── tree
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 1846 │ ├── branch.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 19:05 19-06-2024 19:05 1453 │ ├── level.rs
.rw-r--r-- 25-04-2024 08:51 05-05-2024 13:50 19-06-2024 11:58 45 │ ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 9747 │ └── node.rs
drwxr-xr-x 25-04-2024 08:51 19-06-2024 18:37 19-06-2024 18:38 4096 └── walk
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 31 ├── mod.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 6987 ├── trctxt.rs
.rw-r--r-- 19-06-2024 18:37 19-06-2024 18:37 19-06-2024 18:37 3017 └── visit.rs
directories: 10, files: 37, hidden_files: 0, symlinks: 0, special_files: 0, total_items: 47, size: 122358 bytes
$ trs src -f
src
├── src/cli
│ ├── src/cli/app.rs
│ ├── src/cli/arg.rs
│ └── src/cli/mod.rs
├── src/config
│ ├── src/config/color.rs
│ ├── src/config/inspect.rs
│ ├── src/config/mod.rs
│ ├── src/config/registry.rs
│ ├── src/config/root.rs
│ └── src/config/sorting.rs
├── src/error
│ ├── src/error/mod.rs
│ └── src/error/simple.rs
├── src/main.rs
├── src/render
│ ├── src/render/attr
│ │ ├── src/render/attr/atime.rs
│ │ ├── src/render/attr/btime.rs
│ │ ├── src/render/attr/mod.rs
│ │ ├── src/render/attr/mtime.rs
│ │ ├── src/render/attr/pms.rs
│ │ └── src/render/attr/size.rs
│ ├── src/render/buffer.rs
│ ├── src/render/entree
│ │ ├── src/render/entree/dirr.rs
│ │ ├── src/render/entree/filee.rs
│ │ ├── src/render/entree/headd.rs
│ │ ├── src/render/entree/mod.rs
│ │ └── src/render/entree/symlinked.rs
│ └── src/render/mod.rs
├── src/report
│ ├── src/report/depth.rs
│ ├── src/report/mod.rs
│ ├── src/report/size.rs
│ ├── src/report/tail.rs
│ └── src/report/widest.rs
├── src/tree
│ ├── src/tree/branch.rs
│ ├── src/tree/level.rs
│ ├── src/tree/mod.rs
│ └── src/tree/node.rs
└── src/walk
├── src/walk/mod.rs
├── src/walk/trctxt.rs
└── src/walk/visit.rs
directories: 10, files: 37, hidden_files: 0, symlinks: 0, special_files: 0, total_items: 47, size: 122358 bytes