Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaelgirodon/dirstat
A simple tool that helps to clean up directories by scanning them and generating interactive statistics reports.
https://github.com/gaelgirodon/dirstat
clean cli directory folder green-it report scan statistics
Last synced: 2 days ago
JSON representation
A simple tool that helps to clean up directories by scanning them and generating interactive statistics reports.
- Host: GitHub
- URL: https://github.com/gaelgirodon/dirstat
- Owner: GaelGirodon
- License: gpl-3.0
- Created: 2018-10-27T22:42:40.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T21:25:41.000Z (7 months ago)
- Last Synced: 2024-06-21T15:44:54.266Z (5 months ago)
- Topics: clean, cli, directory, folder, green-it, report, scan, statistics
- Language: JavaScript
- Homepage:
- Size: 492 KB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# DirStat
[![release](https://img.shields.io/github/v/release/GaelGirodon/dirstat?style=flat-square)](https://github.com/GaelGirodon/dirstat/releases/latest)
[![license](https://img.shields.io/github/license/GaelGirodon/dirstat?color=blue&style=flat-square)](./LICENSE)
[![build](https://img.shields.io/github/actions/workflow/status/GaelGirodon/dirstat/build.yml?branch=main&style=flat-square)](https://github.com/GaelGirodon/dirstat/actions/workflows/build.yml)A simple tool that helps to clean up directories by scanning them and generating interactive
statistics reports.## About
**DirStat** is a lightweight command-line tool (< 1 MB). It allows to scan a directory that needs to
be cleaned up, collect statistics about it and make them easily browsable by generating an
[interactive graphical HTML report](#report).Statistics about biggest files and directories (both in size and files count, recursively or not),
most used extensions, most frequent modification years and maximum level of nesting help to know
where the disk space has gone and make it easier to clean the directory.## Install
Download and extract the [latest release](https://github.com/GaelGirodon/dirstat/releases):
```powershell
# Windows (PowerShell)
$DOWNLOAD_URL = "https://github.com/GaelGirodon/dirstat/releases/latest/download"
Invoke-WebRequest -OutFile "dirstat.zip" "$DOWNLOAD_URL/dirstat_windows_amd64.zip"
Expand-Archive "dirstat.zip" -DestinationPath ./
``````shell
# Linux (Bash)
DOWNLOAD_URL="https://github.com/GaelGirodon/dirstat/releases/latest/download"
curl -sL "$DOWNLOAD_URL/dirstat_linux_amd64.tar.gz" | tar xvz
```## Usage
Open a terminal and scan a directory using the `dirstat` binary:
```shell
dirstat [flags]
```Invoke `dirstat` without any argument to run the interactive mode.
> :warning: Scanning directories with many files can take a long time and leads to a large report.
### Arguments
| Argument | Description | Default |
| ----------- | ----------------------------------------- | ------- |
| `` | Path to the directory to scan | |
| `-o ` | Path to the directory to write reports to | `.` |
| `-v` | Print the version number and exit | |
| `-h` | Print the help message and exit | |### Example
#### CLI
```shell
$ dirstat ./my/dir/ -o ./report/
Scanning ./my/dir/
42 files scanned
Reports written to report/dirstat-report.*
```#### Interactive mode
```shell
$ dirstat
___ _ ______ __
/ _ \(_)___/ __/ /____ _/ /_
/ // / / __/\ \/ __/ _ `/ __/
/____/_/_/ /___/\__/\_,_/\__/Type or paste the path to the directory to scan and press the Enter key:
> ./my/dir/Scanning ./my/dir/
42 files scanned
Reports written to dirstat-report.*Press the Enter key to open the report and exit...
```### Report
**DirStat** generates two report files:
- `dirstat-report.html`: the interactive graphical HTML report
- `dirstat-report.json`: raw directory statistics![HTML report screenshot](https://user-images.githubusercontent.com/10748287/195948827-cab2cab1-cb27-4b7b-849d-968f910b65f0.png)
## License
**DirStat** is licensed under the GNU General Public License.