file_tree

Last updated:

0 purchases

file_tree Image
file_tree Images
Add to Cart

Description:

file tree

Code on the Rocks •
GitHub Repo •
Pub.dev


Visualize the file tree of a directory 🌳
Installation #
dart pub global activate file_tree
copied to clipboard
Usage #
Output the file and directory tree of the current directory:
tree grow
copied to clipboard
Output:
├── LICENSE
├── test/
│ └── file_tree_test.dart
├── bin/
│ └── file_tree.dart
├── CHANGELOG.md
├── pubspec.lock
├── README.md
copied to clipboard
Output the file and directory tree using ASCII characters:
tree grow -a
copied to clipboard
Output:
+-- LICENSE
+-- test/
| `-- file_tree_test.dart
+-- bin/
| `-- file_tree.dart
+-- CHANGELOG.md
+-- pubspec.lock
+-- README.md
copied to clipboard
Output the file and directory tree and use emojis to indicate file type:
tree grow -e
copied to clipboard
Output:
├── 📄 LICENSE
├── 📁 test/
│ └── 📄 file_tree_test.dart
├── 📁 bin/
│ └── 📄 file_tree.dart
├── 📄 CHANGELOG.md
├── 📄 pubspec.lock
├── 📄 README.md
copied to clipboard
Help #
(tree grow -h)
Print out a file tree for the current directory.

Usage: tree grow [arguments]
-a, --ascii Use only ASCII characters to draw the tree.
-e, --emojis Add emojis to the tree to indicate file types.
-i, --include_hidden Include hidden files in the tree
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.