Utility Package that displays out the Tree Structure of a user-defined directory with their respective file count.
Project description
Treecount Package
About
Ever get confused in counting the number of files in a set of directories? No Worries!
treecount
is a simple fork of Directory-tree python utility package that displays out the Tree Structure of a user-defined directory with their respective file count.
Currently Available for All Platforms.
Installation
Run the following command on your terminal to install treecount
:
1 . Installing the package using pip
:
pip install treecount
OR
pip3 install treecount
2 . Cloning the repository:
git clone https://github.com/rushic24/treecount/
cd Directory-Tree
pip install -e .
Usage
Arguments
Parameters | Description |
---|---|
dir_path | Refers to the Directory Path of Operation. By default, refers to the Current Working Directory. |
string_rep | Refers to whether you just want the direct output or a string representation of the same. |
Run this script in order to print out the tree structure of a user-defined directory!
# Importing Libraries
from treecount import display_tree
# Main Method
if __name__ == '__main__':
display_tree(directory_path)
- Here by default, the
directory_path
is the current working directory (CWD) unless specified by the user.
Output
- For Current Working Directory [DEFAULT] [String Representation =
False
]
>>> from treecount import display_tree
>>> display_tree()
$ Operating System : Windows
$ Path : C:\Personal\Work\Directory-Tree\Test\Main Directory
*************** Directory Tree ***************
Main Directory/
├── Directory 1/
│ └── Directory 2/
│ ├── Directory 3/
│ │ └── Directory 4/
│ │ └── Hello World.txt
│ └── Say World.txt
├── Directory A/
│ └── Hmm.txt
├── directory-tree-print.cpp
├── letseee.txt
└── printTree.exe
- For User Specified Directory [Argument] [String Representation =
True
]
>>> from treecount import display_tree
>>> stringRepresentation = display_tree('C:\Personal\Work\Directory-Tree\Test\Main Directory', string_rep = True)
>>> print(stringRepresentation)
$ Operating System : Windows
$ Path : C:\Personal\Work\Directory-Tree\Test\Main Directory
*************** Directory Tree ***************
Main Directory/
├── Directory 1/
│ └── Directory 2/
│ ├── Directory 3/
│ │ └── Directory 4/
│ │ └── Hello World.txt
│ └── Say World.txt
├── Directory A/
│ └── Hmm.txt
├── directory-tree-print.cpp
├── letseee.txt
└── printTree.exe
Developing treecount
To install treecount
, along with the tools you need to develop and run tests, and execute the following in your virtualenv:
$ pip install -e .[dev]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file treecount-0.0.2.tar.gz
.
File metadata
- Download URL: treecount-0.0.2.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.1 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f78e6e89fac47ee60e6bcc1831e188b69bc610fe2f319c98bfbedf8bb901172f |
|
MD5 | bf087f94b43b593182fdb4896d584d72 |
|
BLAKE2b-256 | 5aefcbcc3590ed31747aded573b8026b0b413c2ff3ad723d5f03ee58be67fe7c |