#recycle #bin #terminal-file #file-manager #cross-platform #restore #delete

bin+lib rrecycle

Cross-platform terminal file manager with recycle bin support

2 releases (1 stable)

1.0.0 Mar 15, 2024
0.9.9 Mar 15, 2024

#480 in Filesystem

Download history 185/week @ 2024-03-12 28/week @ 2024-03-19 2/week @ 2024-03-26 19/week @ 2024-04-02

61 downloads per month

MIT license

38KB
946 lines

rrecycle (rust+recycle)

A cross-platform terminal file manager with recycle bin support.

Basic usage

Features

  • Delete files permanently
  • Move files to the recycle bin
  • Restore from the recycle bin
  • List files in the recycle bin
  • "Shred" files - securely delete them by overwriting them first.

Installation

To install the project, use Cargo or download a prebuilt binary from GitHub.

  cargo install rrecycle
  rrc --help

Please note that due to limitations in the underlying library which handles interactions with the recycle bin, the project will not compile on MacOS.

Usage

rrc [OPTIONS] <COMMAND>

Subcommands
  trash, -t    Move files to the recycle bin
  restore, -r  Restore files from the recycle bin
  purge, -p    Remove files from the recycle bin
  delete, -d   Delete files permanently
  shred, -s    Securely delete files by overwriting them first
  list, -l     List files in the recycle bin
  help         Print this message or the help of the given subcommand(s)
Options
  -R, --recurse  Run delete and shred on directories without a prompt
  -h, --help     Print help
  -V, --version  Print version

Contributing

Any contributions are very welcome! However, this project uses some rules for code structure which you must follow.

Project structure

This is a split library and binary project.

The library contains most of what the application actually does to your filesystem, as well as utility functions. Functions and types that go in the library are independent from the binary, testable, and generic if possible.

The binary should control application flow, handle user input, and display output. e.g it should not:

  • Check if files exist
  • Recurse over directories
  • Contain overly generic functions

However, things should also not be removed from the binary for the sake of it. For example, calls to functions defined in the underlying trash library (trash-rs) are fine. Wrapper functions should be avoided.

This helps with strictly seperating concerns between application flow and what the application actually does (which terminal tools of this kind often struggle with).

Dependencies

~7–39MB
~575K SLoC