Function latin::file::remove [] [src]

pub fn remove<P: AsRef<Path>>(path: P) -> IoResult<()>

Removes the file at path.

An error is removed if path is not a file, or if the file could not be removed for filesystem reasons.

latin::file::remove("./foo.txt");