Expand description
Removes a file.
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.
async_fs::remove_file("a.txt").await?;