30 stable releases (5 major)

5.0.0 Jun 18, 2024
4.1.1 May 1, 2024
4.1.0 Mar 19, 2024
3.3.1 Feb 12, 2024
0.1.1 Jul 13, 2019

#25 in Filesystem

Download history 6273/week @ 2024-04-05 5746/week @ 2024-04-12 6153/week @ 2024-04-19 6556/week @ 2024-04-26 6343/week @ 2024-05-03 5969/week @ 2024-05-10 5367/week @ 2024-05-17 5199/week @ 2024-05-24 5813/week @ 2024-05-31 5047/week @ 2024-06-07 5101/week @ 2024-06-14 6071/week @ 2024-06-21 4629/week @ 2024-06-28 5188/week @ 2024-07-05 5601/week @ 2024-07-12 4771/week @ 2024-07-19

20,972 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–37MB
~552K SLoC