pub fn remove_dir<P>(path: P, all: bool) -> Result<()>where P: AsRef<Path>,
Removes a directory, but doesn’t fail if it doesn’t exist.
remove_dir("foo", true)?; remove_dir("foo", true)?; // second time doesn't fail