remove_file in async_std::fs - Rust (original) (raw)

async_std::fs

Function remove_file

Source

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

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:

§Examples

use async_std::fs;

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