pub trait FileTypeExt {
// Required methods
fn is_symlink_dir(&self) -> bool;
fn is_symlink_file(&self) -> bool;
}
Expand description
Windows-specific extensions for FileType
.
This corresponds to std::os::windows::fs::FileTypeExt
.
Required Methods§
Sourcefn is_symlink_dir(&self) -> bool
fn is_symlink_dir(&self) -> bool
Returns true
if this file type is a symbolic link that is also a
directory.
Sourcefn is_symlink_file(&self) -> bool
fn is_symlink_file(&self) -> bool
Returns true
if this file type is a symbolic link that is also a
file.