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

Function set_permissions

Source

pub async fn set_permissions<P: AsRef<Path>>(
    path: P,
    perm: Permissions,
) -> Result<()>

Expand description

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:

§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?;