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

12 lines
262 B
Rust

use crate::mods::strs::err_rec;
3 years ago
use std::fs;
pub fn clearcache() {
let path = format!("{}/.cache/ame/", std::env::var("HOME").unwrap());
err_rec(format!("Clearing cache"));
3 years ago
fs::remove_dir_all(&path).unwrap();
fs::create_dir(&path).unwrap();
}