Function std::fs::remove_dir_all [] [src]

pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> Result<()>

Removes a directory at this path, after removing all its contents. Use carefully!

This function does not follow symbolic links and it will simply remove the symbolic link itself.

Errors

See file::remove_file and fs::remove_dir.

Examples

fn main() { use std::fs; fn foo() -> std::io::Result<()> { try!(fs::remove_dir_all("/some/dir")); Ok(()) } }
use std::fs;

try!(fs::remove_dir_all("/some/dir"));