pub async fn remove_file<P>(path: P) -> Result<(), Error>where P: AsRef<Path>,
Removes a file.
An error will be returned in the following situations:
path
async_fs::remove_file("a.txt").await?;