├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── resources └── dutree_featured.png ├── src ├── lib.rs └── main.rs └── test ├── .file_hidden ├── dir1 ├── file1 ├── file2 ├── test2 │ ├── file1 │ └── file2 └── test3 │ ├── file1 │ └── test2 │ ├── file1 │ ├── file2 │ └── test2 │ ├── file1 │ └── file2 ├── dir2 ├── file1 └── file2 ├── dir3 ├── file1 └── link ├── file.avi ├── file.exe ├── file.mp3 ├── file.tar ├── file1 ├── file_noperms ├── file_sparse ├── file_special_á ├── file_special_消 ├── link ├── link_orphan ├── picture.png └── 🍋.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | .*.swp 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/README.md -------------------------------------------------------------------------------- /resources/dutree_featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/resources/dutree_featured.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/src/main.rs -------------------------------------------------------------------------------- /test/.file_hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dir1/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/file1 -------------------------------------------------------------------------------- /test/dir1/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/file2 -------------------------------------------------------------------------------- /test/dir1/test2/file1: -------------------------------------------------------------------------------- 1 | c`# -------------------------------------------------------------------------------- /test/dir1/test2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/test2/file2 -------------------------------------------------------------------------------- /test/dir1/test3/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/test3/file1 -------------------------------------------------------------------------------- /test/dir1/test3/test2/file1: -------------------------------------------------------------------------------- 1 | c`# -------------------------------------------------------------------------------- /test/dir1/test3/test2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/test3/test2/file2 -------------------------------------------------------------------------------- /test/dir1/test3/test2/test2/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/test3/test2/test2/file1 -------------------------------------------------------------------------------- /test/dir1/test3/test2/test2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir1/test3/test2/test2/file2 -------------------------------------------------------------------------------- /test/dir2/file1: -------------------------------------------------------------------------------- 1 | c`# -------------------------------------------------------------------------------- /test/dir2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir2/file2 -------------------------------------------------------------------------------- /test/dir3/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/dir3/file1 -------------------------------------------------------------------------------- /test/dir3/link: -------------------------------------------------------------------------------- 1 | ../dir2 -------------------------------------------------------------------------------- /test/file.avi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file.tar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/file1 -------------------------------------------------------------------------------- /test/file_noperms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/file_noperms -------------------------------------------------------------------------------- /test/file_sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nachoparker/dutree/HEAD/test/file_sparse -------------------------------------------------------------------------------- /test/file_special_á: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file_special_消: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/link: -------------------------------------------------------------------------------- 1 | /media/ -------------------------------------------------------------------------------- /test/link_orphan: -------------------------------------------------------------------------------- 1 | /nonexistent -------------------------------------------------------------------------------- /test/picture.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/🍋.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------