28 stable releases (4 major)

4.1.0 Mar 19, 2024
3.3.1 Feb 12, 2024
3.1.2 Oct 18, 2023
3.0.6 Jul 12, 2023
0.1.1 Jul 13, 2019

#22 in Filesystem

Download history 3887/week @ 2024-01-01 5286/week @ 2024-01-08 5640/week @ 2024-01-15 5391/week @ 2024-01-22 5473/week @ 2024-01-29 5968/week @ 2024-02-05 6342/week @ 2024-02-12 8790/week @ 2024-02-19 7026/week @ 2024-02-26 6731/week @ 2024-03-04 5591/week @ 2024-03-11 5570/week @ 2024-03-18 6096/week @ 2024-03-25 6921/week @ 2024-04-01 5970/week @ 2024-04-08 5188/week @ 2024-04-15

24,952 downloads per month
Used in 46 crates (38 directly)

MIT license

105KB
2K SLoC

Crates.io Docs.rs CI

About

The trash is a Rust library for moving files and folders to the operating system's Recycle Bin or Trash or Rubbish Bin or what have you :D

The library supports Windows, macOS, and all FreeDesktop Trash compliant environments (including GNOME, KDE, XFCE, and more). See more about the FreeDesktop Trash implementation in the freedesktop.rs file.

Usage

# In Cargo.toml
[dependencies]
trash = "3"
// In main.rs
use std::fs::File;
use trash;

fn main() {
    // Let's create and remove a single file
    File::create("remove-me").unwrap();
    trash::delete("remove-me").unwrap();
    assert!(File::open("remove-me").is_err());

    // Now let's remove multiple files at once
    let the_others = ["remove-me-too", "dont-forget-about-me-either"];
    for name in the_others.iter() {
        File::create(name).unwrap();
    }
    trash::delete_all(&the_others).unwrap();
    for name in the_others.iter() {
        assert!(File::open(name).is_err());
    }
}

Dependencies

~0–41MB
~582K SLoC