本文簡要介紹rust語言中 Function std::fs::set_permissions
的用法。
用法
pub fn set_permissions<P: AsRef<Path>>(path: P, perm: Permissions) -> Result<()>
更改在文件或目錄上找到的權限。
特定於平台的行為
該函數當前對應於 Unix 上的 chmod
函數和 Windows 上的 SetFileAttributes
函數。請注意,這個may change in the future。
錯誤
此函數會在以下情況下返回錯誤,但不僅限於這些情況:
path
不存在。- 用戶沒有更改文件屬性的權限。
例子
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(())
}
相關用法
- Rust set_var用法及代碼示例
- Rust set_hook用法及代碼示例
- Rust set_current_dir用法及代碼示例
- Rust str.make_ascii_uppercase用法及代碼示例
- Rust slice.sort_unstable_by_key用法及代碼示例
- Rust slice.iter_mut用法及代碼示例
- Rust symlink用法及代碼示例
- Rust slice.windows用法及代碼示例
- Rust slice.repeat用法及代碼示例
- Rust slice.group_by_mut用法及代碼示例
- Rust slice.align_to_mut用法及代碼示例
- Rust size_of用法及代碼示例
- Rust slice.as_chunks_unchecked用法及代碼示例
- Rust str.strip_suffix用法及代碼示例
- Rust str.trim_left用法及代碼示例
- Rust slice.fill用法及代碼示例
- Rust slice.array_windows用法及代碼示例
- Rust slice.sort_unstable_by用法及代碼示例
- Rust slice.sort用法及代碼示例
- Rust str.char_indices用法及代碼示例
- Rust str.to_ascii_lowercase用法及代碼示例
- Rust str用法及代碼示例
- Rust slice.rotate_left用法及代碼示例
- Rust slice.as_mut_ptr用法及代碼示例
- Rust str.trim用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Function std::fs::set_permissions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。