pub async fn remove_file<P>(path: P) -> Result<(), Error> where
    P: AsRef<Path>, 
Expand description

Removes a file.

This function is an async version of std::fs::remove_file.

Errors

An error will be returned in the following situations:

  • path does not point to an existing file.
  • The current process lacks permissions to remove the file.
  • Some other I/O error occurred.

Examples

use async_std::fs;

fs::remove_file("a.txt").await?;