pub fn remove_file<P: AsRef<Path>>(path: P) -> Result<()>
Removes a file from the filesystem.
Note that there is no guarantee that the file is immediately deleted (e.g., depending on platform, other open file descriptors may prevent immediate removal).
This function currently corresponds to the unlink
function on Unix and the DeleteFile
function on Windows. Note that, this may change in the future.
This function will return an error in the following situations, but is not limited to just these cases:
path
points to a directory.use std::fs; fn main() -> std::io::Result<()> { fs::remove_file("a.txt")?; Ok(()) }
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/fs/fn.remove_file.html