Function tokio::fs::remove_file

source ·
pub fn remove_file<P>(path: P) -> RemoveFileFuture<P>where
    P: AsRef<Path>,
Expand description

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 is an async version of std::fs::remove_file