Function async_std::fs::set_permissions [−][src]
pub async fn set_permissions<P: AsRef<Path>>(
path: P,
perm: Permissions
) -> Result<()>
Changes the permissions of a file or directory.
This function is an async version of std::fs::set_permissions
.
Errors
An error will be returned in the following situations:
path
does not point to an existing file or directory.- The current process lacks permissions to change attributes on the file or directory.
- Some other I/O error occurred.
Examples
use async_std::fs; let mut perm = fs::metadata("a.txt").await?.permissions(); perm.set_readonly(true); fs::set_permissions("a.txt", perm).await?;