useposish::fs::{unlinkat, AtFlags};usestd::{fs, io,path::Path};/// *Unsandboxed* function similar to `rmdir`, but which does not perform sandboxing.
pub(crate)fnrmdir_unchecked(start:&fs::File, path:&Path)->io::Result<()>{unlinkat(start, path,AtFlags::REMOVEDIR)}