Function std::fs::set_permissions 1.1.0[−][src]
pub fn set_permissions<P: AsRef<Path>>(path: P, perm: Permissions) -> Result<()>
Expand description
更改在文件或目录上找到的权限。
平台特定的行为
该函数当前对应于 Unix 上的 chmod
函数和 Windows 上的 SetFileAttributes
函数。
注意,这个 may change in the future。
Errors
在以下情况下,此函数将返回错误,但不仅限于这些情况:
path
不存在。- 用户没有更改文件属性的权限。
Examples
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(()) }Run