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§
sourcefn is_symlink_dir(&self) -> bool
fn is_symlink_dir(&self) -> bool
如果此文件类型是也是目录的符号链接,则返回 true
。
sourcefn is_symlink_file(&self) -> bool
fn is_symlink_file(&self) -> bool
如果此文件类型是也是文件的符号链接,则返回 true
。