[][src]Function async_std::fs::remove_file

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

Removes a file from the filesystem.

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

Errors

An error will be returned in the following situations (not an exhaustive list):

  • path is not a file.
  • The current process lacks permissions to remove file at path.

Examples

use async_std::fs;

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