本文简要介绍rust语言中 std::fs::File.set_permissions
的用法。
用法
pub fn set_permissions(&self, perm: Permissions) -> Result<()>
更改基础文件的权限。
特定于平台的行为
该函数当前对应于 Unix 上的 fchmod
函数和 Windows 上的 SetFileInformationByHandle
函数。请注意,这个may change in the future。
错误
如果用户缺少底层文件的权限更改属性,此函数将返回错误。在其他特定于操作系统的未指定情况下,它也可能返回错误。
例子
fn main() -> std::io::Result<()> {
use std::fs::File;
let file = File::open("foo.txt")?;
let mut perms = file.metadata()?.permissions();
perms.set_readonly(true);
file.set_permissions(perms)?;
Ok(())
}
请注意,此方法会更改基础文件的权限,即使它需要 &self
而不是 &mut self
。
相关用法
- Rust File.set_len用法及代码示例
- Rust File.sync_data用法及代码示例
- Rust File.sync_all用法及代码示例
- Rust File.open用法及代码示例
- Rust File.options用法及代码示例
- Rust File.create用法及代码示例
- Rust File.metadata用法及代码示例
- Rust File.try_clone用法及代码示例
- Rust File用法及代码示例
- Rust FileExt.read_exact_at用法及代码示例
- Rust FileTypeExt.is_char_device用法及代码示例
- Rust FileType.is_symlink用法及代码示例
- Rust FileExt.write_at用法及代码示例
- Rust FileType.is_file用法及代码示例
- Rust FileType.is_dir用法及代码示例
- Rust FileExt.read_at用法及代码示例
- Rust FileTypeExt.is_fifo用法及代码示例
- Rust FileExt.seek_read用法及代码示例
- Rust FileTypeExt.is_socket用法及代码示例
- Rust FileTypeExt.is_block_device用法及代码示例
- Rust FileExt.seek_write用法及代码示例
- Rust FileExt.write_all_at用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust Formatter.debug_list用法及代码示例
- Rust Formatter.sign_minus用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::fs::File.set_permissions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。