本文简要介绍rust语言中 std::fs::FileType.is_symlink
的用法。
用法
pub fn is_symlink(&self) -> bool
测试此文件类型是否代表符号链接。结果与 is_dir
和 is_file
的结果互斥;只有零个或其中一个测试可以通过。
需要使用 fs::symlink_metadata
函数而不是 fs::metadata
函数来检索底层 Metadata
结构。 fs::metadata
函数遵循符号链接,因此 is_symlink
将始终为目标文件返回false
。
例子
use std::fs;
fn main() -> std::io::Result<()> {
let metadata = fs::symlink_metadata("foo.txt")?;
let file_type = metadata.file_type();
assert_eq!(file_type.is_symlink(), false);
Ok(())
}
相关用法
- Rust FileType.is_file用法及代码示例
- Rust FileType.is_dir用法及代码示例
- Rust FileTypeExt.is_char_device用法及代码示例
- Rust FileTypeExt.is_fifo用法及代码示例
- Rust FileTypeExt.is_socket用法及代码示例
- Rust FileTypeExt.is_block_device用法及代码示例
- Rust File用法及代码示例
- Rust FileExt.read_exact_at用法及代码示例
- Rust File.open用法及代码示例
- Rust File.sync_data用法及代码示例
- Rust File.options用法及代码示例
- Rust FileExt.write_at用法及代码示例
- Rust File.create用法及代码示例
- Rust File.sync_all用法及代码示例
- Rust File.set_len用法及代码示例
- Rust FileExt.read_at用法及代码示例
- Rust File.metadata用法及代码示例
- Rust FileExt.seek_read用法及代码示例
- Rust File.set_permissions用法及代码示例
- Rust File.try_clone用法及代码示例
- 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::FileType.is_symlink。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。