pub fn set_permissions<P: AsRef<Path>>(path: P, perm: Permissions) -> Result<()>
Changes the permissions found on a file or a directory.
This function currently corresponds to the chmod
function on Unix and the SetFileAttributes
function on Windows. Note that, this may change in the future.
This function will return an error in the following situations, but is not limited to just these cases:
path
does not exist.use std::fs; fn main() -> std::io::Result<()> { let mut perms = fs::metadata("foo.txt")?.permissions(); perms.set_readonly(true); fs::set_permissions("foo.txt", perms)?; Ok(()) }
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/fs/fn.set_permissions.html