33 stable releases (5 major)

5.2.0 Oct 26, 2024
5.0.0 Jun 18, 2024
4.1.1 May 1, 2024
4.1.0 Mar 19, 2024
0.1.1 Jul 13, 2019

#349 in Filesystem

Download history 6118/week @ 2024-07-28 7313/week @ 2024-08-04 7928/week @ 2024-08-11 5839/week @ 2024-08-18 6097/week @ 2024-08-25 6274/week @ 2024-09-01 6283/week @ 2024-09-08 6241/week @ 2024-09-15 6904/week @ 2024-09-22 6635/week @ 2024-09-29 7044/week @ 2024-10-06 6228/week @ 2024-10-13 5888/week @ 2024-10-20 6335/week @ 2024-10-27 6265/week @ 2024-11-03 6712/week @ 2024-11-10

25,994 downloads per month
Used in 45 crates (37 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–36MB
~551K SLoC