Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sr2ds/du-rs

Simple estimate file space usage - du command in Rust :crab:
https://github.com/sr2ds/du-rs

linux rust rust-language

Last synced: 4 days ago
JSON representation

Simple estimate file space usage - du command in Rust :crab:

Awesome Lists containing this project

README

        

# Simple estimate file space usage - RIIR

A simple tool for size analyze files in your file system like `du` command.

# Actual Status

This is a initial implementation, for now we have only a simple list with size of directories and the unique acceptabled param is directory path.

# Todo

1. Params rules; Like du https://linuxcommand.org/lc3_man_pages/du1.html
2. Is a good idea make async callers to improve perform?;
3. Exceptions tratatives;
4. Tests.

# Setup

Clone this repository and enter to new folder:

```
git clone https://github.com/sr2ds/du-rs.git && cd du-rs
```

Run with Cargo:
```
cargo watch -x run
```

----

Writing in Rust <3