You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amethyst/src/mods/clearcache.rs

9 lines
189 B
Rust

use std::fs;
pub fn clearcache() {
let path = format!("{}/.cache/ame/", std::env::var("HOME").unwrap());
fs::remove_dir_all(&path).unwrap();
fs::create_dir(&path).unwrap();
}