tokio_fs_ext/fs/wasm/
remove_dir_all.rs

1use std::{io, path::Path};
2
3use super::opfs::remove;
4
5pub async fn remove_dir_all(path: impl AsRef<Path>) -> io::Result<()> {
6    remove(path, true).await
7}