add delete support for dirs

This commit is contained in:
mxve 2024-03-01 10:37:56 +01:00
parent 4d6f056d7b
commit 87535fb839

View File

@ -412,7 +412,7 @@ async fn update(
for f in game.delete.iter() {
let file_path = dir.join(f);
if file_path.exists() {
if file_path.is_file() {
if fs::remove_file(&file_path).is_err() {
println!(
"[{}] Couldn't delete {}",
@ -426,6 +426,20 @@ async fn update(
misc::cute_path(&file_path)
);
}
} else if file_path.is_dir() {
if fs::remove_dir_all(&file_path).is_err() {
println!(
"[{}] Couldn't delete {}",
"Error".bright_red(),
misc::cute_path(&file_path)
);
} else {
println!(
"[{}] {}",
"Removed".bright_red(),
misc::cute_path(&file_path)
);
}
}
}