Trait std::os::windows::fs::FileTypeExt

1.64.0 · source ·
pub trait FileTypeExt: Sealed {
    // Required methods
    fn is_symlink_dir(&self) -> bool;
    fn is_symlink_file(&self) -> bool;
}
Available on Windows only.
Expand description

特定于 Windows 的 fs::FileType 扩展。

在 Windows 上,符号链接知道它是文件还是目录。

Required Methods§

如果此文件类型是也是目录的符号链接,则返回 true

如果此文件类型是也是文件的符号链接,则返回 true

Implementors§